-- MySQL dump 10.13  Distrib 5.7.23-23, for Linux (x86_64)
--
-- Host: localhost    Database: assarbbq_aahan-wp
-- ------------------------------------------------------
-- Server version	5.7.23-23

/*!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 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;

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

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB 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/','','2022-05-16 04:35:32','2022-05-16 04:35:32','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://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,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `wp_e_submissions`
--

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

--
-- Dumping data for table `wp_e_submissions`
--

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

--
-- Table structure for table `wp_e_submissions_actions_log`
--

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

--
-- Dumping data for table `wp_e_submissions_actions_log`
--

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

--
-- Table structure for table `wp_e_submissions_values`
--

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

--
-- Dumping data for table `wp_e_submissions_values`
--

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

--
-- Table structure for table `wp_give_commentmeta`
--

DROP TABLE IF EXISTS `wp_give_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_commentmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `give_comment_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `give_comment_id` (`give_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_give_commentmeta`
--

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

--
-- Table structure for table `wp_give_comments`
--

DROP TABLE IF EXISTS `wp_give_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_comments` (
  `comment_ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `comment_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_parent` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_type` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_date` datetime NOT NULL,
  `comment_date_gmt` datetime NOT NULL,
  PRIMARY KEY (`comment_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_give_comments`
--

LOCK TABLES `wp_give_comments` WRITE;
/*!40000 ALTER TABLE `wp_give_comments` DISABLE KEYS */;
INSERT INTO `wp_give_comments` VALUES (1,0,'Status changed from Pending to Complete.','130','donation','2022-05-16 07:23:19','2022-05-16 07:23:19');
/*!40000 ALTER TABLE `wp_give_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_donationmeta`
--

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

--
-- Dumping data for table `wp_give_donationmeta`
--

LOCK TABLES `wp_give_donationmeta` WRITE;
/*!40000 ALTER TABLE `wp_give_donationmeta` DISABLE KEYS */;
INSERT INTO `wp_give_donationmeta` VALUES (1,130,'_give_payment_total','100.000000'),(2,130,'_give_payment_currency','INR'),(3,130,'_give_donor_billing_first_name','sonu'),(4,130,'_give_donor_billing_last_name','s'),(5,130,'_give_payment_gateway','manual'),(6,130,'_give_payment_form_title','Donation Form'),(7,130,'_give_payment_form_id','100'),(8,130,'_give_payment_price_id','3'),(9,130,'_give_payment_donor_title_prefix',''),(10,130,'_give_payment_donor_email','sonuvalakam@gmail.com'),(11,130,'_give_payment_donor_ip','2409:4073:313:5f6c:941b:d78f:652a:46cf'),(12,130,'_give_payment_purchase_key','c2dfe221355d78d2a9ce31d2d0b65276'),(13,130,'_give_payment_mode','test'),(14,130,'_give_payment_donor_id','1'),(15,130,'_give_current_url','https://demoweblinks.in/aahan/donations/donation-form/'),(16,130,'_give_current_page_id','100'),(17,130,'_give_anonymous_donation','0'),(18,130,'_give_completed_date','2022-05-16 07:23:19');
/*!40000 ALTER TABLE `wp_give_donationmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_donormeta`
--

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

--
-- Dumping data for table `wp_give_donormeta`
--

LOCK TABLES `wp_give_donormeta` WRITE;
/*!40000 ALTER TABLE `wp_give_donormeta` DISABLE KEYS */;
INSERT INTO `wp_give_donormeta` VALUES (1,1,'_give_donor_first_name','sonu'),(2,1,'_give_donor_last_name','s'),(3,1,'_give_donor_title_prefix','');
/*!40000 ALTER TABLE `wp_give_donormeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_donors`
--

DROP TABLE IF EXISTS `wp_give_donors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_donors` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `email` varchar(255) NOT NULL,
  `name` mediumtext NOT NULL,
  `purchase_value` mediumtext NOT NULL,
  `purchase_count` bigint(20) NOT NULL,
  `payment_ids` longtext NOT NULL,
  `date_created` datetime NOT NULL,
  `token` varchar(255) NOT NULL,
  `verify_key` varchar(255) NOT NULL,
  `verify_throttle` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  KEY `user` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_give_donors`
--

LOCK TABLES `wp_give_donors` WRITE;
/*!40000 ALTER TABLE `wp_give_donors` DISABLE KEYS */;
INSERT INTO `wp_give_donors` VALUES (1,1,'sonuvalakam@gmail.com','sonu s','100.000000',1,'130','2022-05-16 07:23:19','','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `wp_give_donors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_formmeta`
--

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

--
-- Dumping data for table `wp_give_formmeta`
--

LOCK TABLES `wp_give_formmeta` WRITE;
/*!40000 ALTER TABLE `wp_give_formmeta` DISABLE KEYS */;
INSERT INTO `wp_give_formmeta` VALUES (1,100,'_give_onboarding_default_form','1'),(2,100,'_give_levels_minimum_amount','10'),(3,100,'_give_levels_maximim_amount','250'),(4,100,'_give_form_template','sequoia'),(5,100,'_give_form_status','open'),(6,100,'_give_sequoia_form_template_settings','a:5:{s:12:\"introduction\";a:6:{s:7:\"enabled\";s:7:\"enabled\";s:8:\"headline\";s:17:\"Support Our Cause\";s:11:\"description\";s:104:\"Help our organization by donating today! All donations go directly to making a difference for our cause.\";s:5:\"image\";s:110:\"https://demoweblinks.in/aahan/wp-content/plugins/give/assets/dist/images/onboarding-preview-form-image.min.jpg\";s:13:\"primary_color\";s:7:\"#4fa651\";s:12:\"donate_label\";s:10:\"Donate Now\";}s:14:\"payment_amount\";a:3:{s:12:\"header_label\";s:13:\"Choose Amount\";s:7:\"content\";s:126:\"How much would you like to donate? As a contributor to Aahan we make sure your donation goes directly to supporting our cause.\";s:10:\"next_label\";s:8:\"Continue\";}s:17:\"visual_appearance\";a:3:{s:16:\"decimals_enabled\";s:8:\"disabled\";s:13:\"primary_color\";s:7:\"#28C77B\";s:12:\"google-fonts\";s:7:\"enabled\";}s:19:\"payment_information\";a:7:{s:12:\"header_label\";s:20:\"Add Your Information\";s:8:\"headline\";s:19:\"Who\'s giving today?\";s:11:\"description\";s:49:\"We’ll never share this information with anyone.\";s:24:\"donation_summary_enabled\";s:7:\"enabled\";s:24:\"donation_summary_heading\";s:35:\"Here\'s what you\'re about to donate:\";s:25:\"donation_summary_location\";s:32:\"give_donation_form_before_submit\";i:0;a:7:{s:2:\"id\";s:14:\"checkout_label\";s:4:\"name\";s:13:\"Submit Button\";s:4:\"desc\";s:43:\"The button label for completing a donation.\";s:4:\"type\";s:11:\"text_medium\";s:10:\"attributes\";a:1:{s:11:\"placeholder\";s:10:\"Donate Now\";}s:7:\"default\";s:10:\"Donate Now\";s:18:\"mapToLegacySetting\";s:20:\"_give_checkout_label\";}}s:9:\"thank-you\";a:6:{s:5:\"image\";s:0:\"\";s:8:\"headline\";s:22:\"A great big thank you!\";s:11:\"description\";s:143:\"{name}, your contribution means a lot and will be put to good use in making a difference. We’ve sent your donation receipt to {donor_email}. \";s:7:\"sharing\";s:7:\"enabled\";s:19:\"sharing_instruction\";s:77:\"Help spread the word by sharing your support with your friends and followers!\";s:15:\"twitter_message\";s:38:\"I just gave to this cause. Who\'s next?\";}}'),(7,100,'_give_checkout_label','Donate Now'),(8,100,'_give_display_style','buttons'),(9,100,'_give_payment_display','button'),(10,100,'_give_form_floating_labels','disabled'),(11,100,'_give_reveal_label','Donate Now'),(12,100,'_give_display_content','disabled'),(13,100,'_give_content_placement',''),(14,100,'_give_form_content',''),(15,100,'_give_price_option','multi'),(16,100,'_give_set_price','1'),(17,100,'_give_custom_amount','enabled'),(18,100,'_give_donation_levels','a:5:{i:0;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"0\";}s:12:\"_give_amount\";s:9:\"10.000000\";}i:1;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"1\";}s:12:\"_give_amount\";s:9:\"25.000000\";}i:2;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"2\";}s:12:\"_give_amount\";s:9:\"50.000000\";}i:3;a:3:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"3\";}s:12:\"_give_amount\";s:10:\"100.000000\";s:13:\"_give_default\";s:7:\"default\";}i:4;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"5\";}s:12:\"_give_amount\";s:10:\"250.000000\";}}'),(19,100,'_give_default_gateway','global'),(20,100,'_give_name_title_prefix','global'),(21,100,'_give_title_prefixes',''),(22,100,'_give_company_field','disabled'),(23,100,'_give_anonymous_donation','enabled'),(24,100,'_give_donor_comment','enabled'),(25,100,'_give_logged_in_only','enabled'),(26,100,'_give_show_register_form','none'),(27,100,'_give_goal_option','disabled'),(28,100,'_give_goal_format','amount'),(29,100,'_give_set_goal','10000'),(30,100,'_give_number_of_donor_goal','100'),(31,100,'_give_goal_color','#4fa651'),(32,100,'_give_close_form_when_goal_achieved','disabled'),(33,100,'_give_form_goal_achieved_message','Thank you to all our donors, we have met our fundraising goal.'),(34,100,'_give_terms_option','disabled'),(35,100,'_give_agree_label','Agree to terms?'),(36,100,'_give_agree_text','The terms can be customized in the donation form settings.'),(37,100,'give_stripe_per_form_accounts','disabled'),(38,100,'_give_default_stripe_account',''),(39,100,'_give_email_options','global'),(40,100,'_give_email_template','default'),(41,100,'_give_email_logo',''),(42,100,'_give_from_name','Aahan'),(43,100,'_give_from_email','brains@amaeka.com'),(44,100,'_give_new-donation_notification','global'),(45,100,'_give_new-donation_email_subject','New Donation - #{payment_id}'),(46,100,'_give_new-donation_email_header','New Donation!'),(47,100,'_give_new-donation_email_message','Hi there,\n\nThis email is to inform you that a new donation has been made on your website: {site_url}.\n\n<strong>Donor:</strong> {name}\n<strong>Donation:</strong> {donation}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n\nThank you,\n\n{sitename}\n'),(48,100,'_give_new-donation_email_content_type','text/html'),(49,100,'_give_new-donation_recipient','a:1:{s:5:\"email\";s:17:\"brains@amaeka.com\";}'),(50,100,'_give_donation-receipt_notification','global'),(51,100,'_give_donation-receipt_email_subject','Donation Receipt'),(52,100,'_give_donation-receipt_email_header','Donation Receipt'),(53,100,'_give_donation-receipt_email_mesage','Dear {name},\n\nThank you for your donation. Your generosity is appreciated! Here are the details of your donation:\n\n<strong>Donor:</strong> {fullname}\n<strong>Donation:</strong> {donation}\n<strong>Donation Date:</strong> {date}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n<strong>Payment ID:</strong> {payment_id}\n\n{receipt_link}\n\n\n\nSincerely,\n{sitename}\n'),(54,100,'_give_donation-receipt_email_content_type','text/html'),(55,100,'_give_form_goal_progress','-1'),(56,100,'_give_offline_checkout_notes','<em>You can customize instructions in the forms settings.</em><br /><br /><strong>Please make checks payable to \"{sitename}\".</strong><br /><br />Your donation is greatly appreciated!'),(57,100,'_give_customize_offline_donations','enabled'),(58,100,'_give_form_earnings','100'),(59,100,'_give_form_sales','1'),(60,100,'_edit_lock','1652685661:1'),(61,100,'ekit_post_views_count','2');
/*!40000 ALTER TABLE `wp_give_formmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_log`
--

DROP TABLE IF EXISTS `wp_give_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `log_type` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `data` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `category` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `log_type` (`log_type`),
  KEY `category` (`category`),
  KEY `source` (`source`)
) 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_give_log`
--

LOCK TABLES `wp_give_log` WRITE;
/*!40000 ALTER TABLE `wp_give_log` DISABLE KEYS */;
INSERT INTO `wp_give_log` VALUES (1,'info','{\"message\":\"Payment log info\",\"context\":{\"log_content\":\"Payment log info\",\"log_parent\":130,\"log_type\":\"sale\",\"log_date\":\"2022-05-16 07:23:19\",\"log_date_gmt\":\"2022-05-16 07:23:19\",\"form_id\":\"100\",\"price_id\":3}}','Payment','Give Core','2022-05-16 07:23:19');
/*!40000 ALTER TABLE `wp_give_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_migrations`
--

DROP TABLE IF EXISTS `wp_give_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_migrations` (
  `id` varchar(180) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `error` text COLLATE utf8mb4_unicode_520_ci,
  `last_run` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_give_migrations`
--

LOCK TABLES `wp_give_migrations` WRITE;
/*!40000 ALTER TABLE `wp_give_migrations` DISABLE KEYS */;
INSERT INTO `wp_give_migrations` VALUES ('add-missing-transaction-id-for-uncompleted-stripe-donations','success','','2022-05-16 06:33:27'),('add-statement-descriptor-to-stripe-accounts','success','','2022-05-16 06:33:27'),('create_migrations_table','success','','2022-05-16 06:33:25'),('create_new_log_table','success','','2022-05-16 06:33:27'),('create_revenue_table','success','','2022-05-16 06:33:25'),('create_subscription_tables','success','','2022-05-16 06:33:28'),('delete_old_log_tables','success','','2022-05-16 06:33:27'),('migrate_completed_migrations','success','','2022-05-16 06:33:28'),('remove_revenue_foreign_keys','success','','2022-05-16 06:33:27'),('remove_sensitive_logs','success','','2022-05-16 06:33:28'),('remove-log-with-card-info','success','','2022-05-16 06:33:27'),('remove-paypal-ipn-verification-setting','success','','2022-05-16 06:33:27'),('set_paypal_standard_id_to_paypal_from_paypal_standard','success','','2022-05-16 06:33:27'),('set-form-donation-levels-to-strings','success','','2022-05-16 06:33:27');
/*!40000 ALTER TABLE `wp_give_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_revenue`
--

DROP TABLE IF EXISTS `wp_give_revenue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_revenue` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `donation_id` bigint(20) unsigned NOT NULL,
  `form_id` bigint(20) unsigned NOT NULL,
  `amount` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_give_revenue`
--

LOCK TABLES `wp_give_revenue` WRITE;
/*!40000 ALTER TABLE `wp_give_revenue` DISABLE KEYS */;
INSERT INTO `wp_give_revenue` VALUES (1,130,100,10000);
/*!40000 ALTER TABLE `wp_give_revenue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_sequential_ordering`
--

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

--
-- Dumping data for table `wp_give_sequential_ordering`
--

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

--
-- Table structure for table `wp_give_sessions`
--

DROP TABLE IF EXISTS `wp_give_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_give_sessions`
--

LOCK TABLES `wp_give_sessions` WRITE;
/*!40000 ALTER TABLE `wp_give_sessions` DISABLE KEYS */;
INSERT INTO `wp_give_sessions` VALUES (1,'992dcb50c9384d043215b7665922218e','a:2:{s:13:\"give_purchase\";s:1450:\"a:9:{s:5:\"price\";d:100;s:12:\"purchase_key\";s:32:\"c2dfe221355d78d2a9ce31d2d0b65276\";s:10:\"user_email\";s:21:\"sonuvalakam@gmail.com\";s:4:\"date\";s:19:\"2022-05-16 07:23:19\";s:9:\"user_info\";a:6:{s:2:\"id\";i:1;s:5:\"title\";s:0:\"\";s:5:\"email\";s:21:\"sonuvalakam@gmail.com\";s:10:\"first_name\";s:4:\"sonu\";s:9:\"last_name\";s:1:\"s\";s:7:\"address\";b:0;}s:9:\"post_data\";a:20:{s:13:\"give-honeypot\";s:0:\"\";s:19:\"give-form-id-prefix\";s:5:\"100-1\";s:12:\"give-form-id\";s:3:\"100\";s:15:\"give-form-title\";s:13:\"Donation Form\";s:16:\"give-current-url\";s:54:\"https://demoweblinks.in/aahan/donations/donation-form/\";s:13:\"give-form-url\";s:49:\"https://demoweblinks.in/aahan/give/donation-form/\";s:17:\"give-form-minimum\";s:0:\"\";s:17:\"give-form-maximum\";s:9:\"999999.99\";s:14:\"give-form-hash\";s:10:\"6e7296e0a7\";s:13:\"give-price-id\";s:1:\"3\";s:11:\"give-amount\";s:3:\"100\";s:10:\"give_first\";s:4:\"sonu\";s:9:\"give_last\";s:1:\"s\";s:10:\"give_email\";s:21:\"sonuvalakam@gmail.com\";s:12:\"give_comment\";s:0:\"\";s:12:\"payment-mode\";s:6:\"manual\";s:12:\"give-user-id\";s:1:\"1\";s:11:\"give_action\";s:8:\"purchase\";s:12:\"give-gateway\";s:6:\"manual\";s:15:\"give_embed_form\";s:1:\"1\";}s:7:\"gateway\";s:6:\"manual\";s:9:\"card_info\";a:10:{s:9:\"card_name\";s:0:\"\";s:8:\"card_cvc\";s:0:\"\";s:14:\"card_exp_month\";s:0:\"\";s:13:\"card_exp_year\";s:0:\"\";s:12:\"card_address\";s:0:\"\";s:14:\"card_address_2\";s:0:\"\";s:9:\"card_city\";s:0:\"\";s:10:\"card_state\";s:0:\"\";s:12:\"card_country\";s:0:\"\";s:8:\"card_zip\";s:0:\"\";}s:11:\"donation_id\";i:130;}\";s:10:\"give_email\";s:21:\"sonuvalakam@gmail.com\";}',1653290599);
/*!40000 ALTER TABLE `wp_give_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_give_subscriptionmeta`
--

DROP TABLE IF EXISTS `wp_give_subscriptionmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_subscriptionmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `subscription_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `subscription_id` (`subscription_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_give_subscriptionmeta`
--

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

--
-- Table structure for table `wp_give_subscriptions`
--

DROP TABLE IF EXISTS `wp_give_subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_give_subscriptions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `customer_id` bigint(20) NOT NULL,
  `period` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `frequency` bigint(20) NOT NULL DEFAULT '1',
  `initial_amount` decimal(18,10) NOT NULL,
  `recurring_amount` decimal(18,10) NOT NULL,
  `recurring_fee_amount` decimal(18,10) NOT NULL,
  `bill_times` bigint(20) NOT NULL,
  `transaction_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent_payment_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `created` datetime NOT NULL,
  `expiration` datetime NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `profile_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `notes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `profile_id` (`profile_id`),
  KEY `customer` (`customer_id`),
  KEY `transaction` (`transaction_id`),
  KEY `customer_and_status` (`customer_id`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_give_subscriptions`
--

LOCK TABLES `wp_give_subscriptions` WRITE;
/*!40000 ALTER TABLE `wp_give_subscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_give_subscriptions` 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=2882 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://demoweblinks.in/aahan','yes'),(2,'home','https://demoweblinks.in/aahan','yes'),(3,'blogname','Aahan','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','brains@amaeka.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:245:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:12:\"donations/?$\";s:30:\"index.php?post_type=give_forms\";s:42:\"donations/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=give_forms&feed=$matches[1]\";s:37:\"donations/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=give_forms&feed=$matches[1]\";s:29:\"donations/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=give_forms&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:34:\"category/(.+?)/give-api(/(.*))?/?$\";s:56:\"index.php?category_name=$matches[1]&give-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:31:\"tag/([^/]+)/give-api(/(.*))?/?$\";s:46:\"index.php?tag=$matches[1]&give-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:42:\"e-landing-page/([^/]+)/give-api(/(.*))?/?$\";s:57:\"index.php?e-landing-page=$matches[1]&give-api=$matches[3]\";s:48:\"e-landing-page/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:59:\"e-landing-page/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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:45:\"elementskit-content/(.+?)/give-api(/(.*))?/?$\";s:62:\"index.php?elementskit_content=$matches[1]&give-api=$matches[3]\";s:51:\"elementskit-content/.+?/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:62:\"elementskit-content/.+?/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:39:\"jkit-header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"jkit-header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"jkit-header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"jkit-header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"jkit-header/([^/]+)/embed/?$\";s:44:\"index.php?jkit-header=$matches[1]&embed=true\";s:32:\"jkit-header/([^/]+)/trackback/?$\";s:38:\"index.php?jkit-header=$matches[1]&tb=1\";s:40:\"jkit-header/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?jkit-header=$matches[1]&paged=$matches[2]\";s:47:\"jkit-header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?jkit-header=$matches[1]&cpage=$matches[2]\";s:39:\"jkit-header/([^/]+)/give-api(/(.*))?/?$\";s:54:\"index.php?jkit-header=$matches[1]&give-api=$matches[3]\";s:45:\"jkit-header/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:56:\"jkit-header/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:36:\"jkit-header/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?jkit-header=$matches[1]&page=$matches[2]\";s:28:\"jkit-header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"jkit-header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"jkit-header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"jkit-header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"jkit-footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"jkit-footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"jkit-footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"jkit-footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"jkit-footer/([^/]+)/embed/?$\";s:44:\"index.php?jkit-footer=$matches[1]&embed=true\";s:32:\"jkit-footer/([^/]+)/trackback/?$\";s:38:\"index.php?jkit-footer=$matches[1]&tb=1\";s:40:\"jkit-footer/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?jkit-footer=$matches[1]&paged=$matches[2]\";s:47:\"jkit-footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?jkit-footer=$matches[1]&cpage=$matches[2]\";s:39:\"jkit-footer/([^/]+)/give-api(/(.*))?/?$\";s:54:\"index.php?jkit-footer=$matches[1]&give-api=$matches[3]\";s:45:\"jkit-footer/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:56:\"jkit-footer/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:36:\"jkit-footer/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?jkit-footer=$matches[1]&page=$matches[2]\";s:28:\"jkit-footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"jkit-footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"jkit-footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"jkit-footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"jkit-template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"jkit-template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"jkit-template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"jkit-template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"jkit-template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"jkit-template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"jkit-template/([^/]+)/embed/?$\";s:46:\"index.php?jkit-template=$matches[1]&embed=true\";s:34:\"jkit-template/([^/]+)/trackback/?$\";s:40:\"index.php?jkit-template=$matches[1]&tb=1\";s:42:\"jkit-template/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?jkit-template=$matches[1]&paged=$matches[2]\";s:49:\"jkit-template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?jkit-template=$matches[1]&cpage=$matches[2]\";s:41:\"jkit-template/([^/]+)/give-api(/(.*))?/?$\";s:56:\"index.php?jkit-template=$matches[1]&give-api=$matches[3]\";s:47:\"jkit-template/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:58:\"jkit-template/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:38:\"jkit-template/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?jkit-template=$matches[1]&page=$matches[2]\";s:30:\"jkit-template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"jkit-template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"jkit-template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"jkit-template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"jkit-template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"jkit-template/[^/]+/([^/]+)/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:38:\"metform-form/(.+?)/give-api(/(.*))?/?$\";s:55:\"index.php?metform-form=$matches[1]&give-api=$matches[3]\";s:44:\"metform-form/.+?/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:55:\"metform-form/.+?/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:35:\"metform-form/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?metform-form=$matches[1]&page=$matches[2]\";s:37:\"donations/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"donations/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"donations/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"donations/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"donations/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"donations/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"donations/([^/]+)/embed/?$\";s:43:\"index.php?give_forms=$matches[1]&embed=true\";s:30:\"donations/([^/]+)/trackback/?$\";s:37:\"index.php?give_forms=$matches[1]&tb=1\";s:50:\"donations/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?give_forms=$matches[1]&feed=$matches[2]\";s:45:\"donations/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?give_forms=$matches[1]&feed=$matches[2]\";s:38:\"donations/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?give_forms=$matches[1]&paged=$matches[2]\";s:45:\"donations/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?give_forms=$matches[1]&cpage=$matches[2]\";s:37:\"donations/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?give_forms=$matches[1]&give-api=$matches[3]\";s:43:\"donations/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:54:\"donations/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:34:\"donations/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?give_forms=$matches[1]&page=$matches[2]\";s:26:\"donations/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"donations/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"donations/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"donations/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"donations/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"donations/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:13:\"give/(.+?)/?$\";s:50:\"index.php?url_prefix=give&give_form_id=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=11&cpage=$matches[1]\";s:19:\"give-api(/(.*))?/?$\";s:31:\"index.php?&give-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:28:\"comments/give-api(/(.*))?/?$\";s:31:\"index.php?&give-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:31:\"search/(.+)/give-api(/(.*))?/?$\";s:44:\"index.php?s=$matches[1]&give-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:34:\"author/([^/]+)/give-api(/(.*))?/?$\";s:54:\"index.php?author_name=$matches[1]&give-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:56:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/give-api(/(.*))?/?$\";s:84:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&give-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:43:\"([0-9]{4})/([0-9]{1,2})/give-api(/(.*))?/?$\";s:68:\"index.php?year=$matches[1]&monthnum=$matches[2]&give-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:30:\"([0-9]{4})/give-api(/(.*))?/?$\";s:47:\"index.php?year=$matches[1]&give-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/give-api(/(.*))?/?$\";s:101:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&give-api=$matches[6]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:75:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:27:\"(.?.+?)/give-api(/(.*))?/?$\";s:51:\"index.php?pagename=$matches[1]&give-api=$matches[3]\";s:33:\".?.+?/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:44:\".?.+?/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:14:{i:0;s:27:\"crowdfundly/crowdfundly.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:37:\"elementskit-lite/elementskit-lite.php\";i:4;s:27:\"elementskit/elementskit.php\";i:5;s:35:\"envato-elements/envato-elements.php\";i:6;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:7;s:13:\"give/give.php\";i:8;s:49:\"ht-mega-for-elementor/htmega_addons_elementor.php\";i:9;s:25:\"htmega-pro/htmega_pro.php\";i:10;s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";i:11;s:19:\"metform/metform.php\";i:12;s:19:\"stratum/stratum.php\";i:13;s:75:\"timeline-widget-addon-for-elementor/timeline-widget-addon-for-elementor.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentytwenty','yes'),(41,'stylesheet','twentytwenty','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','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','11','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','175','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','1668227732','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','51917','yes'),(100,'wp_user_roles','a:11:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:107:{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:17:\"view_give_reports\";b:1;s:24:\"view_give_sensitive_data\";b:1;s:19:\"export_give_reports\";b:1;s:20:\"manage_give_settings\";b:1;s:18:\"view_give_payments\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"delete_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:22:\"manage_give_form_terms\";b:1;s:20:\"edit_give_form_terms\";b:1;s:22:\"delete_give_form_terms\";b:1;s:22:\"assign_give_form_terms\";b:1;s:20:\"view_give_form_stats\";b:1;s:17:\"import_give_forms\";b:1;s:18:\"edit_give_payments\";b:1;s:25:\"edit_others_give_payments\";b:1;s:21:\"publish_give_payments\";b:1;s:26:\"read_private_give_payments\";b:1;s:20:\"delete_give_payments\";b:1;s:28:\"delete_private_give_payments\";b:1;s:30:\"delete_published_give_payments\";b:1;s:27:\"delete_others_give_payments\";b:1;s:26:\"edit_private_give_payments\";b:1;s:28:\"edit_published_give_payments\";b:1;s:25:\"manage_give_payment_terms\";b:1;s:23:\"edit_give_payment_terms\";b:1;s:25:\"delete_give_payment_terms\";b:1;s:25:\"assign_give_payment_terms\";b:1;s:23:\"view_give_payment_stats\";b:1;s:20:\"import_give_payments\";b:1;s:23:\"crowdfundly_menu_access\";b:1;s:27:\"crowdfundly_create_campaign\";b:1;s:27:\"crowdfundly_manage_campaign\";b:1;s:27:\"crowdfundly_delete_campaign\";b:1;s:18:\"crowdfundly_logout\";b:1;s:23:\"crowdfundly_manage_team\";b:1;s:27:\"crowdfundly_manage_settings\";b:1;s:26:\"crowdfundly_manage_reports\";b:1;s:27:\"crowdfundly_manage_payments\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:12:\"give_manager\";a:2:{s:4:\"name\";s:14:\"GiveWP Manager\";s:12:\"capabilities\";a:65:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:0;s:6:\"import\";b:0;s:19:\"delete_others_pages\";b:0;s:19:\"delete_others_posts\";b:0;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_others_pages\";b:0;s:17:\"edit_others_posts\";b:0;s:10:\"edit_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:17:\"manage_categories\";b:0;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:17:\"view_give_reports\";b:1;s:24:\"view_give_sensitive_data\";b:1;s:19:\"export_give_reports\";b:1;s:20:\"manage_give_settings\";b:1;s:18:\"view_give_payments\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"delete_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:22:\"manage_give_form_terms\";b:1;s:20:\"edit_give_form_terms\";b:1;s:22:\"delete_give_form_terms\";b:1;s:22:\"assign_give_form_terms\";b:1;s:20:\"view_give_form_stats\";b:1;s:17:\"import_give_forms\";b:1;s:18:\"edit_give_payments\";b:1;s:25:\"edit_others_give_payments\";b:1;s:21:\"publish_give_payments\";b:1;s:26:\"read_private_give_payments\";b:1;s:20:\"delete_give_payments\";b:1;s:28:\"delete_private_give_payments\";b:1;s:30:\"delete_published_give_payments\";b:1;s:27:\"delete_others_give_payments\";b:1;s:26:\"edit_private_give_payments\";b:1;s:28:\"edit_published_give_payments\";b:1;s:25:\"manage_give_payment_terms\";b:1;s:23:\"edit_give_payment_terms\";b:1;s:25:\"delete_give_payment_terms\";b:1;s:25:\"assign_give_payment_terms\";b:1;s:23:\"view_give_payment_stats\";b:1;s:20:\"import_give_payments\";b:1;}}s:15:\"give_accountant\";a:2:{s:4:\"name\";s:17:\"GiveWP Accountant\";s:12:\"capabilities\";a:9:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:15:\"edit_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"view_give_reports\";b:1;s:19:\"export_give_reports\";b:1;s:18:\"edit_give_payments\";b:1;s:18:\"view_give_payments\";b:1;}}s:11:\"give_worker\";a:2:{s:4:\"name\";s:13:\"GiveWP Worker\";s:12:\"capabilities\";a:16:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:18:\"edit_give_payments\";b:1;s:17:\"delete_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;}}s:10:\"give_donor\";a:2:{s:4:\"name\";s:12:\"GiveWP Donor\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:17:\"crowdfundly_admin\";a:2:{s:4:\"name\";s:17:\"Crowdfundly Admin\";s:12:\"capabilities\";a:9:{s:23:\"crowdfundly_menu_access\";b:1;s:27:\"crowdfundly_create_campaign\";b:1;s:27:\"crowdfundly_manage_campaign\";b:1;s:27:\"crowdfundly_delete_campaign\";b:1;s:18:\"crowdfundly_logout\";b:1;s:23:\"crowdfundly_manage_team\";b:1;s:27:\"crowdfundly_manage_settings\";b:1;s:26:\"crowdfundly_manage_reports\";b:1;s:27:\"crowdfundly_manage_payments\";b:1;}}s:19:\"crowdfundly_manager\";a:2:{s:4:\"name\";s:19:\"Crowdfundly Manager\";s:12:\"capabilities\";a:9:{s:23:\"crowdfundly_menu_access\";b:1;s:27:\"crowdfundly_create_campaign\";b:1;s:27:\"crowdfundly_manage_campaign\";b:1;s:27:\"crowdfundly_delete_campaign\";b:0;s:18:\"crowdfundly_logout\";b:0;s:23:\"crowdfundly_manage_team\";b:1;s:27:\"crowdfundly_manage_settings\";b:1;s:26:\"crowdfundly_manage_reports\";b:1;s:27:\"crowdfundly_manage_payments\";b:0;}}}','yes'),(101,'fresh_site','0','yes'),(102,'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'),(103,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:13:{i:1652945733;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652978133;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653021333;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653021899;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653021900;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:1653022062;a:1:{s:31:\"eael_remove_unused_options_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653024798;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:1653028538;a:1:{s:27:\"give_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653201338;a:1:{s:30:\"give_thricely_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"thricely\";s:4:\"args\";a:0:{}s:8:\"interval\";i:259200;}}}i:1653287738;a:1:{s:28:\"give_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1653366933;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:1655274938;a:1:{s:29:\"give_monthly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(121,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:58;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1652680036;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'),(124,'https_detection_errors','a:0:{}','yes'),(130,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652933092;s:7:\"checked\";a:3:{s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";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.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(132,'_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-5.9.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-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1652935005;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(134,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:17:\"brains@amaeka.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1652675742;}','no'),(135,'_site_transient_timeout_browser_a347e9a76ed44d33a1c5ca41b57d18aa','1653281100','no'),(136,'_site_transient_browser_a347e9a76ed44d33a1c5ca41b57d18aa','a:10:{s:4:\"name\";s:5:\"Opera\";s:7:\"version\";s:12:\"85.0.4341.75\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:22:\"https://www.opera.com/\";s:7:\"img_src\";s:42:\"http://s.w.org/images/browsers/opera.png?1\";s:11:\"img_src_ssl\";s:43:\"https://s.w.org/images/browsers/opera.png?1\";s:15:\"current_version\";s:5:\"12.18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(137,'_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1','1653281100','no'),(138,'_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(140,'can_compress_scripts','1','no'),(153,'recently_activated','a:0:{}','yes'),(158,'finished_updating_comment_type','1','yes'),(163,'envato_elements_version','2.0.11','yes'),(164,'envato_elements_install_time','1652676442','yes'),(165,'elementor_active_kit','7','yes'),(168,'elementor_version','3.6.5','yes'),(169,'elementor_install_history','a:2:{s:5:\"3.5.6\";i:1652679209;s:5:\"3.6.5\";i:1652676446;}','yes'),(170,'elementor_events_db_version','1.0.0','no'),(172,'elementor_onboarded','1','yes'),(173,'_elementor_installed_time','1652676452','yes'),(174,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}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:14:{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\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:796:{i:0;a:16:{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:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{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:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=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:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{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:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{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:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{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:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=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:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{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:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=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:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{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:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{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:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{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:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{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:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{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:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{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:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{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:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{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:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{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:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{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:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=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:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{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:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{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:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=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:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{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:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{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:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=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:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{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:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{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:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{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:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{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:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{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:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{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:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{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:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=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:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{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:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{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:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=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:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{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:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{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:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{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:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{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:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{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:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{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:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{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:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{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:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{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:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{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:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{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:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{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:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{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:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{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:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{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:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{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:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{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:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{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:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{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:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{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:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{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:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{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:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{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:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{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:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{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:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{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:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{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:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{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:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{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:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{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:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{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:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{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:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{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:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{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:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{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:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{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:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{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:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{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:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{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:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{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:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{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:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{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:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{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:125:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{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:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{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:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=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:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{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:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{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:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{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:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{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:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{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:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{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:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{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:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=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:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{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:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{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:120:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{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:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{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:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=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:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{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:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{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:117:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{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:119:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{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:115:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{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:114:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{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:111:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{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:115:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{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:114:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{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:111:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{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:114:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{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:109:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{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:100:\"https://library.elementor.com/lp/dot-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{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:113:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{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:115:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=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:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{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:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=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:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{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:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=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:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{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:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{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:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=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:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{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:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=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:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{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:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=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:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{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:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=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:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{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:110:\"https://library.elementor.com/interior-design-home/?utm_source=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{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:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=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:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | 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:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=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:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{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:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=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:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:154;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | 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:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:155;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | 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:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | 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:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | 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:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | 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:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | 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:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | 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:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=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:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | 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:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | 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:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | 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:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | 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:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | 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:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:168;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | 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:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | 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:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | 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:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | 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:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | 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:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{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:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=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:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | 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:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | 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:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{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:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=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:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | 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:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"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:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{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:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:16:{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:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:16:{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:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{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:117:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:16:{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:118:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{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:119:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:187;a:16:{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:115:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:16:{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:117:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:16:{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:107:\"https://library.elementor.com/lp/nails-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:190;a:16:{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:114:\"https://library.elementor.com/lp/music-festival-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:191;a:16:{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:125:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:16:{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:118:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{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:117:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{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:130:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=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:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{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:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{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:111:\"https://library.elementor.com/photographer-projects/?utm_source=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:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:198;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=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:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:200;a:16:{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:106:\"https://library.elementor.com/restaurant-about/?utm_source=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:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:201;a:16:{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:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=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:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=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:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{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:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:204;a:16:{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:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=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:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:205;a:16:{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:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=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:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:206;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=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:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{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:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:208;a:16:{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:110:\"https://library.elementor.com/photographer-gallery/?utm_source=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:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:209;a:16:{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:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=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:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:210;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=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:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{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:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:212;a:16:{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:111:\"https://library.elementor.com/architecture-projects/?utm_source=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:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:213;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=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:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{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:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:215;a:16:{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:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=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:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:216;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=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:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{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:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:218;a:16:{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:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=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:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=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:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:221;a:16:{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:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=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:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=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:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:16:{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:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:224;a:16:{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:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:16:{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:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:226;a:16:{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:110:\"https://library.elementor.com/construction-service/?utm_source=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:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{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:104:\"https://library.elementor.com/blocks/about-1/?utm_source=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:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:228;a:16:{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:105:\"https://library.elementor.com/blocks/about-10/?utm_source=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:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:229;a:16:{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:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:230;a:16:{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:110:\"https://library.elementor.com/contact-plants-store/?utm_source=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:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{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:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:232;a:16:{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:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=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:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{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:105:\"https://library.elementor.com/blocks/about-11/?utm_source=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:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:234;a:16:{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:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:235;a:16:{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:110:\"https://library.elementor.com/dental-care-services/?utm_source=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:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{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:105:\"https://library.elementor.com/blocks/about-12/?utm_source=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:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:16:{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:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:238;a:16:{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:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=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:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:16:{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:105:\"https://library.elementor.com/blocks/about-13/?utm_source=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:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:240;a:16:{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:105:\"https://library.elementor.com/blocks/about-15/?utm_source=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:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:16:{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:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:242;a:16:{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:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=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:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:16:{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:105:\"https://library.elementor.com/blocks/about-14/?utm_source=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:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:244;a:16:{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:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:245;a:16:{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:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:246;a:16:{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:103:\"https://library.elementor.com/hotel-contact/?utm_source=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:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{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:105:\"https://library.elementor.com/blocks/about-16/?utm_source=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:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:16:{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:110:\"https://library.elementor.com/lp/conference-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:16:{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:116:\"https://library.elementor.com/insurance-company-services/?utm_source=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:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{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:105:\"https://library.elementor.com/blocks/about-17/?utm_source=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:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:251;a:16:{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:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:16:{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:105:\"https://library.elementor.com/blocks/about-18/?utm_source=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:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:253;a:16:{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:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:16:{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:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=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:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{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:105:\"https://library.elementor.com/blocks/about-19/?utm_source=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:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:16:{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:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{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:110:\"https://library.elementor.com/online-training-home/?utm_source=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:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:16:{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:104:\"https://library.elementor.com/blocks/about-2/?utm_source=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:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:259;a:16:{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:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:16:{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:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=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:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{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:105:\"https://library.elementor.com/blocks/about-20/?utm_source=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:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:262;a:16:{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:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:16:{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:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:16:{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:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=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:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{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:105:\"https://library.elementor.com/blocks/about-21/?utm_source=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:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:16:{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:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{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:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=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:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:16:{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:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=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:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:16:{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:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{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:108:\"https://library.elementor.com/travel-agency-home/?utm_source=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:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:16:{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:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=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:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:16:{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:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=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:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:273;a:16:{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:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=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:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:16:{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:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:16:{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:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=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:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{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:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=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:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{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:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:16:{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:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{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:104:\"https://library.elementor.com/blocks/about-7/?utm_source=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:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:16:{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:104:\"https://library.elementor.com/blocks/about-8/?utm_source=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:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:16:{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:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{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:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{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:104:\"https://library.elementor.com/blocks/about-9/?utm_source=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:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{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:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:16:{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:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=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:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{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:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:16:{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:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=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:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:16:{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:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=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:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{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:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=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:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:16:{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:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:16:{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:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=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:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{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:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=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:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{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:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{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:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=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:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{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:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=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:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{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:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{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:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=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:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{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:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=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:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{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:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{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:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=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:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{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:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=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:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{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:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{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:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=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:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{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:107:\"https://library.elementor.com/travel-blog-about/?utm_source=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:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{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:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{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:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=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:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{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:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=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:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{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:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{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:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=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:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{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:106:\"https://library.elementor.com/travel-blog-home/?utm_source=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:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{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:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{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:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=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:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{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:107:\"https://library.elementor.com/dance-studio-home/?utm_source=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:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{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:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:16:{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:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=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:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{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:108:\"https://library.elementor.com/dance-studio-about/?utm_source=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:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{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:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:16:{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:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=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:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{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:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=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:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{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:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:16:{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:114:\"https://library.elementor.com/blocks/barbershop-header/?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:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:16:{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:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=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:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{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:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:16:{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:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=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:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{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:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=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:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{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:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=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:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{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:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{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:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=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:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{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:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=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:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{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:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{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:108:\"https://library.elementor.com/psychologist-about/?utm_source=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:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{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:116:\"https://library.elementor.com/blocks/beauty-salon-header/?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:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{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:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{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:110:\"https://library.elementor.com/psychologist-contact/?utm_source=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:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{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:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{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:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=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:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{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:107:\"https://library.elementor.com/psychologist-home/?utm_source=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:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{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:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{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:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=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:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{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:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=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:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{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:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{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:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=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:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{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:111:\"https://library.elementor.com/psychologist-services/?utm_source=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:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{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:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{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:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=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:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:16:{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:112:\"https://library.elementor.com/flooring-company-about/?utm_source=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:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{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:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{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:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=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:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{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:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=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:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{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:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{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:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=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:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:16:{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:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=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:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{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:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{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:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=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:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:16:{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:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=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:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{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:115:\"https://library.elementor.com/flooring-company-services/?utm_source=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:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{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:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{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:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=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:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{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:111:\"https://library.elementor.com/flooring-company-home/?utm_source=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:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{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:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{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:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=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:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{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:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=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:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:16:{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:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{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:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=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:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:365;a:16:{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:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=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:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; 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:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{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:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=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:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{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:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=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:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{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:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:16:{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:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=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:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:16:{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:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=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:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:16:{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:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=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:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:16:{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:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:16:{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:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=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:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:16:{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:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=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:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{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:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=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:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{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:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:16:{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:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=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:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:379;a:16:{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:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=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:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:16:{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:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{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:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=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:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{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:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=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:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{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:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{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:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=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:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:16:{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:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=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:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{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:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{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:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=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:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:16:{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:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=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:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{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:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{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:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=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:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:391;a:16:{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:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=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:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{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:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=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:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{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:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{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:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=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:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{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:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=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:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{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:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:16:{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:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=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:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{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:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{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:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=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:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{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:105:\"https://library.elementor.com/barbershop-home/?utm_source=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:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{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:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{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:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=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:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{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:106:\"https://library.elementor.com/barbershop-about/?utm_source=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:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{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:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{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:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=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:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{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:109:\"https://library.elementor.com/barbershop-services/?utm_source=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:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i: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:16:{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:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:408;a:16:{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:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=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:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:16:{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:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=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:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{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:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=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:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{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:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:16:{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:108:\"https://library.elementor.com/barbershop-contact/?utm_source=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:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i: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:16:{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:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{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:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=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:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:16:{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:108:\"https://library.elementor.com/online-course-home/?utm_source=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:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{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:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=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:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{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:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:16:{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:109:\"https://library.elementor.com/online-course-about/?utm_source=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:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{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:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:16:{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:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=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:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:16:{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:115:\"https://library.elementor.com/online-course-course-page/?utm_source=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:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{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:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:16:{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:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=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:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:16:{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:111:\"https://library.elementor.com/online-course-contact/?utm_source=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:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{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:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:426;a:16:{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:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=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:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:16:{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:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=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:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{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:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:429;a:16:{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:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=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:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:16:{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:111:\"https://library.elementor.com/interior-design-about/?utm_source=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:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{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:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:16:{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:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=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:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{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:114:\"https://library.elementor.com/interior-design-projects/?utm_source=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:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:16:{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:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{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:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=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:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:16:{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:113:\"https://library.elementor.com/interior-design-contact/?utm_source=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:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{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:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:16:{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:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=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:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:439;a:16:{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:111:\"https://library.elementor.com/photography-home-page/?utm_source=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:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{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:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=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:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:441;a:16:{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:107:\"https://library.elementor.com/photography-about/?utm_source=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:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:16:{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:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=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:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:16:{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:109:\"https://library.elementor.com/photography-contact/?utm_source=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:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{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:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=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:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:445;a:16:{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:110:\"https://library.elementor.com/photography-wildlife/?utm_source=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:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{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:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=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:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:447;a:16:{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:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=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:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:16:{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:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=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:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:16:{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:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=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:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{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:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=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:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{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:108:\"https://library.elementor.com/photography-nature/?utm_source=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:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{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:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=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:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{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:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=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:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{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:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=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:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:16:{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:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=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:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{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:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=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:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{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:106:\"https://library.elementor.com/photography-pets/?utm_source=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:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{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:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=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:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:16:{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:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=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:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{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:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=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:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:16:{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:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=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:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{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:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=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:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{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:108:\"https://library.elementor.com/magazine-home-page/?utm_source=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:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:16:{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:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=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:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:465;a:16:{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:106:\"https://library.elementor.com/travel-home-page/?utm_source=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:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{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:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=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:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:467;a:16:{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:102:\"https://library.elementor.com/travel-about/?utm_source=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:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{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:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=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:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:16:{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:102:\"https://library.elementor.com/travel-tours/?utm_source=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:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{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:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=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:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:16:{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:109:\"https://library.elementor.com/travel-testimonials/?utm_source=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:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{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:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=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:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:473;a:16:{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:104:\"https://library.elementor.com/travel-gallery/?utm_source=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:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{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:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=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:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:475;a:16:{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:100:\"https://library.elementor.com/travel-faq/?utm_source=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:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{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:109:\"https://library.elementor.com/travel-contact-page/?utm_source=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:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:16:{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:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=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:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{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:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=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:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:16:{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:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=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:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{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:105:\"https://library.elementor.com/portfolio-about/?utm_source=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:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:16:{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:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=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:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{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:108:\"https://library.elementor.com/portfolio-projects/?utm_source=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:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:16:{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:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=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:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{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:107:\"https://library.elementor.com/portfolio-contact/?utm_source=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:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{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:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=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:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{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:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=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:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{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:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=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:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:16:{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:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=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:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{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:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=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:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:490;a:16:{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:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=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:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:16:{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:104:\"https://library.elementor.com/law-firm-about/?utm_source=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:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{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:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=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:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:16:{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:103:\"https://library.elementor.com/law-firm-team/?utm_source=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:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{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:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=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:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:16:{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:110:\"https://library.elementor.com/digital-agency-about/?utm_source=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:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{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:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=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:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:16:{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:101:\"https://library.elementor.com/gym-trainer/?utm_source=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:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{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:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=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:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:16:{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:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=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:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:16:{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:106:\"https://library.elementor.com/law-firm-careers/?utm_source=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:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{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:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=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:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{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:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=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:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{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:116:\"https://library.elementor.com/blocks/dance-studio-header/?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:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{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:106:\"https://library.elementor.com/law-firm-partner/?utm_source=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:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{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:113:\"https://library.elementor.com/digital-agency-services/?utm_source=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:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=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:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-4/?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:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{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:101:\"https://library.elementor.com/gym-classes/?utm_source=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:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=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:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=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:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{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:106:\"https://library.elementor.com/law-firm-contact/?utm_source=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:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{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:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=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:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{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:107:\"https://library.elementor.com/law-firm-services/?utm_source=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:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{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:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=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:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{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:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=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:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{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:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=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:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{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:101:\"https://library.elementor.com/gym-fitness/?utm_source=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:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{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:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=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:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{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:103:\"https://library.elementor.com/gym-home-page/?utm_source=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:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{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:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=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:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:16:{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:106:\"https://library.elementor.com/law-firm-service/?utm_source=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:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{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:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=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:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:16:{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:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=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:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{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:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=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:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:16:{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:99:\"https://library.elementor.com/gym-about/?utm_source=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:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{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:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=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:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:16:{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:101:\"https://library.elementor.com/gym-pricing/?utm_source=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:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{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:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=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:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:16:{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:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=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:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{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:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=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:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{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:101:\"https://library.elementor.com/gym-contact/?utm_source=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:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{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:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=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:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:16:{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:107:\"https://library.elementor.com/blocks/features-1/?utm_source=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:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{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:108:\"https://library.elementor.com/blocks/features-10/?utm_source=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:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:16:{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:108:\"https://library.elementor.com/blocks/features-11/?utm_source=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:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{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:108:\"https://library.elementor.com/blocks/features-12/?utm_source=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:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:16:{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:107:\"https://library.elementor.com/blocks/features-2/?utm_source=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:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:16:{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:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:16:{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:107:\"https://library.elementor.com/blocks/features-4/?utm_source=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:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{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:107:\"https://library.elementor.com/blocks/features-5/?utm_source=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:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:16:{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:107:\"https://library.elementor.com/blocks/features-6/?utm_source=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:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{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:107:\"https://library.elementor.com/blocks/features-7/?utm_source=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:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:543;a:16:{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:107:\"https://library.elementor.com/blocks/features-8/?utm_source=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:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:16:{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:107:\"https://library.elementor.com/blocks/features-9/?utm_source=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:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:545;a:16:{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:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=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:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:16:{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:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=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:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{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:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=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:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{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:120:\"https://library.elementor.com/blocks/flooring-company-header/?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:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{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:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=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:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{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:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=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:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{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:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=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:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{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:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=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:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{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:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=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:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{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:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=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:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{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:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=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:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{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:101:\"https://library.elementor.com/blocks/demo/?utm_source=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:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{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:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=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:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{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:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=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:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{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:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=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:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{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:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=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:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{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:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=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:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{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:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=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:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{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:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=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:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{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:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=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:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{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:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=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:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{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:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=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:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{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:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=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:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{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:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=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:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{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:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=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:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{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:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=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:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{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:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=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:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{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:100:\"https://library.elementor.com/blocks/gym/?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:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{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:105:\"https://library.elementor.com/blocks/header-1/?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:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{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:106:\"https://library.elementor.com/blocks/header-10/?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:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{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:106:\"https://library.elementor.com/blocks/header-11/?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:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{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:106:\"https://library.elementor.com/blocks/header-12/?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:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{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:106:\"https://library.elementor.com/blocks/header-13/?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:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{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:105:\"https://library.elementor.com/blocks/header-2/?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:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{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:105:\"https://library.elementor.com/blocks/header-3/?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:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{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:105:\"https://library.elementor.com/blocks/header-4/?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:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{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:105:\"https://library.elementor.com/blocks/header-5/?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:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{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:105:\"https://library.elementor.com/blocks/header-6/?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:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{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:105:\"https://library.elementor.com/blocks/header-7/?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:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{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:105:\"https://library.elementor.com/blocks/header-8/?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:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{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:105:\"https://library.elementor.com/blocks/header-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:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{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:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=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:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:16:{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:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=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:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{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:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=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:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:589;a:16:{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:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=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:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{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:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=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:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{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:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=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:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:592;a:16:{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:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=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:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{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:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=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:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:594;a:16:{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:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=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:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{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:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=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:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:596;a:16:{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:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=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:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:16:{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:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=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:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{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:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=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:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{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:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=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:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{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:119:\"https://library.elementor.com/blocks/interior-design-header/?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:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{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:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=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:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{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:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=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:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{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:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=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:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{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:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=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:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{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:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=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:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{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:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?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:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{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:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=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:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{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:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=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:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{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:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=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:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{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:112:\"https://library.elementor.com/blocks/law-firm-header/?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:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{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:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=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:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{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:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=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:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{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:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=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:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{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:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=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:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{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:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?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:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{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:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=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:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{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:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=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:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{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:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=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:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{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:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=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:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{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:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=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:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{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:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=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:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{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:112:\"https://library.elementor.com/blocks/magazine-header/?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:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:16:{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:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=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:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=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:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=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:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:16:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=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:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{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:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=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:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{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:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=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:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{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:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=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:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{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:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=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:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{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:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=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:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{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:117:\"https://library.elementor.com/blocks/online-course-header/?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:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{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:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=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:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{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:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=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:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{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:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=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:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{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:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=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:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{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:115:\"https://library.elementor.com/blocks/photography-header/?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:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{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:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=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:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=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:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=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:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=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:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{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:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=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:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{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: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:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{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:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=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:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{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:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=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:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{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:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=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:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{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:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=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:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i: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:16:{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:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=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:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:649;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=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:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=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:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=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:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=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:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=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:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=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:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:655;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=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:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:656;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=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:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=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:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:658;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=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:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=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:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=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:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=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:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:662;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=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:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:663;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=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:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:664;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=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:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=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:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=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:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=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:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=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:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=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:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=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:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=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:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=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:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=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:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=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:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=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:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=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:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=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:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=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:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=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:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=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:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{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:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=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:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{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:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=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:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{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:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=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:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:16:{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:116:\"https://library.elementor.com/blocks/psychologist-header/?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:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{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:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=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:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{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:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=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:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:16:{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:108:\"https://library.elementor.com/blocks/services-13/?utm_source=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:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:688;a:16:{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:108:\"https://library.elementor.com/blocks/services-14/?utm_source=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:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:16:{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:108:\"https://library.elementor.com/blocks/services-16/?utm_source=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:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:16:{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:108:\"https://library.elementor.com/blocks/services-17/?utm_source=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:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:16:{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:108:\"https://library.elementor.com/blocks/services-18/?utm_source=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:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:16:{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:108:\"https://library.elementor.com/blocks/services-20/?utm_source=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:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:16:{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:108:\"https://library.elementor.com/blocks/services-21/?utm_source=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:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:694;a:16:{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:108:\"https://library.elementor.com/blocks/services-22/?utm_source=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:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:695;a:16:{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:108:\"https://library.elementor.com/blocks/services-23/?utm_source=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:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:696;a:16:{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:108:\"https://library.elementor.com/blocks/services-24/?utm_source=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:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:697;a:16:{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:108:\"https://library.elementor.com/blocks/services-25/?utm_source=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:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:698;a:16:{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:108:\"https://library.elementor.com/blocks/services-26/?utm_source=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:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:699;a:16:{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:108:\"https://library.elementor.com/blocks/services-27/?utm_source=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:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:700;a:16:{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:108:\"https://library.elementor.com/blocks/services-28/?utm_source=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:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:701;a:16:{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:108:\"https://library.elementor.com/blocks/services-29/?utm_source=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:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:702;a:16:{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:108:\"https://library.elementor.com/blocks/services-30/?utm_source=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:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:703;a:16:{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:108:\"https://library.elementor.com/blocks/services-31/?utm_source=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:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:704;a:16:{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:107:\"https://library.elementor.com/blocks/services-5/?utm_source=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:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:705;a:16:{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:107:\"https://library.elementor.com/blocks/services-6/?utm_source=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:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:706;a:16:{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:107:\"https://library.elementor.com/blocks/services-7/?utm_source=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:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:707;a:16:{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:107:\"https://library.elementor.com/blocks/services-8/?utm_source=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:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:708;a:16:{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:107:\"https://library.elementor.com/blocks/services-9/?utm_source=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:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:709;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=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:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=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:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=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:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=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:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=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:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=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:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=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:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=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:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=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:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=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:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=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:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=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:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=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:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=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:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=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:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=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:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=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:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=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:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{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:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=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:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:16:{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:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=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:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:16:{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:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=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:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:16:{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:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=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:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:16:{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:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=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:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:16:{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:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=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:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:16:{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:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=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:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:16:{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:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=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:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:16:{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:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=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:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:16:{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:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=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:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:16:{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:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=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:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{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:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=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:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{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:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=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:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:740;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=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:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{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:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=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:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=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:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=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:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=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:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{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:104:\"https://library.elementor.com/blocks/team-11/?utm_source=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:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:16:{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:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=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:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{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:104:\"https://library.elementor.com/blocks/team-13/?utm_source=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:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:748;a:16:{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:104:\"https://library.elementor.com/blocks/team-14/?utm_source=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:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:749;a:16:{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:104:\"https://library.elementor.com/blocks/team-15/?utm_source=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:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:750;a:16:{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:104:\"https://library.elementor.com/blocks/team-16/?utm_source=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:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{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:104:\"https://library.elementor.com/blocks/team-17/?utm_source=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:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:16:{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:104:\"https://library.elementor.com/blocks/team-18/?utm_source=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:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:16:{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:104:\"https://library.elementor.com/blocks/team-19/?utm_source=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:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{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:104:\"https://library.elementor.com/blocks/team-20/?utm_source=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:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:16:{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:104:\"https://library.elementor.com/blocks/team-21/?utm_source=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:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:16:{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:104:\"https://library.elementor.com/blocks/team-22/?utm_source=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:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:16:{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:104:\"https://library.elementor.com/blocks/team-23/?utm_source=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:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{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:103:\"https://library.elementor.com/blocks/team-4/?utm_source=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:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{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:103:\"https://library.elementor.com/blocks/team-5/?utm_source=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:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{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:103:\"https://library.elementor.com/blocks/team-6/?utm_source=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:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{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:103:\"https://library.elementor.com/blocks/team-7/?utm_source=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:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=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:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=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:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=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:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=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:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=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:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=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:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=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:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=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:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=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:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=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:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=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:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=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:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=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:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=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:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:16:{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:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=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:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=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:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{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:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=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:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:779;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=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:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=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:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=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:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{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:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=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:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:16:{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:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=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:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:16:{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:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=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:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:785;a:16:{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:110:\"https://library.elementor.com/blocks/travel-header/?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:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:16:{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:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=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:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:787;a:16:{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:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=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:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:788;a:16:{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:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=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:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:789;a:16:{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:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=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:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:16:{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:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=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:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:16:{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:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=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:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:16:{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:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=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:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:16:{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:115:\"https://library.elementor.com/blocks/travel-blog-header/?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:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:16:{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:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=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:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:16:{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:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=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:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(175,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:32:\"Elementor Websites of April 2022\";s:7:\"excerpt\";s:301:\"April’s showcase offers plenty of ideas to spruce up your web design as things begin to slowly heat up. From international organizations and real estate to designers, studios, and consultants plus a picturesque island that will take your breath away, this month’s websites will leave you inspired.\";s:7:\"created\";i:1652720134;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:119:\"https://elementor.com/blog/showcase-april-2022/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:46:\"NFT 101: A Beginner’s Guide for Web Creators\";s:7:\"excerpt\";s:298:\"NFTs have taken the world by storm, providing web designers with fresh opportunities to earn money and distribute their work to larger audiences around the globe. In this article, we\'ll break down what NFTs are and how to use them practically (plus, a sneak peek at our new NFT landing page kits!).\";s:7:\"created\";i:1651578283;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:114:\"https://elementor.com/blog/nft-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:29:\"What Is Inclusive Web Design?\";s:7:\"excerpt\";s:297:\"When designing a website, it is important to keep in mind that not all users interact with it in the same way. Using inclusive design will help you remove bias and assumptions from your website and ensure that users will not feel excluded. Keep reading to learn how to master this modern approach.\";s:7:\"created\";i:1651142542;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:120:\"https://elementor.com/blog/inclusive-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:55:\"How To Grow Your Business Using Elementor Cloud Website\";s:7:\"excerpt\";s:313:\"In our ‘Community Talks’ event, four leading web creators held a panel discussion with practical tips on how you can incorporate Elementor Cloud Website into your business model to earn more. Uncover low-hanging fruit opportunities and learn to hunt down new avenues for business with Elementor Cloud Website.\";s:7:\"created\";i:1651067671;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:155:\"https://elementor.com/blog/how-to-grow-your-business-using-elementor-cloud-website/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:59:\"Word-of-Mouth Marketing: How To Build a Successful Strategy\";s:7:\"excerpt\";s:337:\"One of the most effective marketing strategies is word-of-mouth. Think about it: would you rather listen to a random guy on an infomercial or a direct recommendation from your business mentor? In this article, we’ll dive into what word-of-mouth marketing actually means and how you can successfully leverage it for your business today.\";s:7:\"created\";i:1650978196;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/word-of-mouth-marketing/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(178,'eael_setup_wizard','complete','yes'),(179,'eael_save_settings','a:54:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";s:0:\"\";s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";s:0:\"\";s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";s:0:\"\";s:10:\"ninja-form\";s:0:\"\";s:9:\"formstack\";s:0:\"\";s:12:\"gravity-form\";s:0:\"\";s:12:\"caldera-form\";s:0:\"\";s:7:\"wpforms\";s:0:\"\";s:10:\"fluentform\";s:0:\"\";s:8:\"typeform\";s:0:\"\";s:24:\"betterdocs-category-grid\";s:0:\"\";s:23:\"betterdocs-category-box\";s:0:\"\";s:22:\"betterdocs-search-form\";s:0:\"\";s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";s:0:\"\";s:8:\"woo-cart\";s:0:\"\";s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";i:1;s:20:\"woo-product-carousel\";s:0:\"\";s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";i:1;s:18:\"interactive-circle\";i:1;s:14:\"better-payment\";i:1;}','yes'),(180,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:1:{s:6:\"review\";i:1653281262;}s:4:\"time\";i:1652676462;s:7:\"version\";s:5:\"5.1.2\";}}','yes'),(181,'eael_version','5.1.2','yes'),(183,'eael_admin_menu_notice','2','no'),(184,'eael_editor_updated_at','1652944107','yes'),(185,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(190,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(191,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(192,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(203,'stratum_db_version','1.3.13','yes'),(204,'stratum_db_version_history','a:1:{i:0;s:6:\"1.3.13\";}','yes'),(205,'elementor_disable_color_schemes','yes','yes'),(206,'elementor_disable_typography_schemes','yes','yes'),(208,'elementor_log','a:16:{s:32:\"de37ef35317ebd119cfa952311f9f251\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-05-16 04:59:13\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1403;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-05-19 06:17:02\";i:1;s:19:\"2022-05-19 06:17:48\";i:2;s:19:\"2022-05-19 06:17:51\";i:3;s:19:\"2022-05-19 06:38:29\";i:4;s:19:\"2022-05-19 06:38:32\";i:5;s:19:\"2022-05-19 06:38:37\";i:6;s:19:\"2022-05-19 06:39:03\";i:7;s:19:\"2022-05-19 06:39:03\";i:8;s:19:\"2022-05-19 06:40:19\";i:9;s:19:\"2022-05-19 06:40:31\";i:10;s:19:\"2022-05-19 06:41:05\";i:11;s:19:\"2022-05-19 06:57:43\";i:12;s:19:\"2022-05-19 06:58:15\";i:13;s:19:\"2022-05-19 06:58:33\";i:14;s:19:\"2022-05-19 06:58:36\";i:15;s:19:\"2022-05-19 06:58:53\";i:16;s:19:\"2022-05-19 06:59:04\";i:17;s:19:\"2022-05-19 06:59:18\";i:18;s:19:\"2022-05-19 06:59:19\";i:19;s:19:\"2022-05-19 06:59:32\";i:20;s:19:\"2022-05-19 07:00:20\";i:21;s:19:\"2022-05-19 07:00:29\";i:22;s:19:\"2022-05-19 07:00:37\";i:23;s:19:\"2022-05-19 07:00:38\";i:24;s:19:\"2022-05-19 07:00:50\";i:25;s:19:\"2022-05-19 07:00:56\";i:26;s:19:\"2022-05-19 07:01:13\";i:27;s:19:\"2022-05-19 07:01:20\";i:28;s:19:\"2022-05-19 07:01:29\";i:29;s:19:\"2022-05-19 07:01:37\";i:30;s:19:\"2022-05-19 07:01:38\";i:31;s:19:\"2022-05-19 07:01:55\";i:32;s:19:\"2022-05-19 07:02:00\";i:33;s:19:\"2022-05-19 07:02:10\";i:34;s:19:\"2022-05-19 07:03:32\";i:35;s:19:\"2022-05-19 07:04:22\";i:36;s:19:\"2022-05-19 07:04:27\";i:37;s:19:\"2022-05-19 07:04:32\";i:38;s:19:\"2022-05-19 07:05:14\";i:39;s:19:\"2022-05-19 07:05:16\";i:40;s:19:\"2022-05-19 07:07:24\";i:41;s:19:\"2022-05-19 07:08:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"1f3f7f521382974dd61eff7a8148ee9e\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"31739\";s:7:\"\0*\0file\";s:94:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.5.6\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-05-16 05:37:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:38:\"elementorFrontendConfig is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:13;s:14:\"\0*\0times_dates\";a:13:{i:0;s:19:\"2022-05-16 05:37:19\";i:1;s:19:\"2022-05-16 05:38:27\";i:2;s:19:\"2022-05-16 05:38:34\";i:3;s:19:\"2022-05-16 05:43:55\";i:4;s:19:\"2022-05-16 07:22:56\";i:5;s:19:\"2022-05-16 10:36:54\";i:6;s:19:\"2022-05-16 10:38:04\";i:7;s:19:\"2022-05-16 13:24:46\";i:8;s:19:\"2022-05-17 05:44:17\";i:9;s:19:\"2022-05-18 04:40:53\";i:10;s:19:\"2022-05-18 12:31:12\";i:11;s:19:\"2022-05-18 12:55:28\";i:12;s:19:\"2022-05-18 13:46:39\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652679439\";s:7:\"message\";s:38:\"elementorFrontendConfig is not defined\";s:3:\"url\";s:94:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.5.6\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"31739\";}}s:32:\"5644e8dcdecb2a32bb271264d050f20d\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-05-16 07:32:26\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:109:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:109:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:111:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/stratum/includes/controls/ajax_control.php\";s:4:\"line\";i:30;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:102;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-05-18 12:19:00\";i:1;s:19:\"2022-05-18 12:30:36\";i:2;s:19:\"2022-05-18 12:31:38\";i:3;s:19:\"2022-05-18 12:32:04\";i:4;s:19:\"2022-05-18 12:33:53\";i:5;s:19:\"2022-05-18 12:38:40\";i:6;s:19:\"2022-05-18 12:41:06\";i:7;s:19:\"2022-05-18 12:45:16\";i:8;s:19:\"2022-05-18 12:55:40\";i:9;s:19:\"2022-05-18 12:56:00\";i:10;s:19:\"2022-05-18 13:18:57\";i:11;s:19:\"2022-05-18 13:43:47\";i:12;s:19:\"2022-05-18 13:44:03\";i:13;s:19:\"2022-05-18 13:44:28\";i:14;s:19:\"2022-05-18 13:46:00\";i:15;s:19:\"2022-05-18 13:46:31\";i:16;s:19:\"2022-05-18 13:47:47\";i:17;s:19:\"2022-05-18 13:58:52\";i:18;s:19:\"2022-05-18 14:00:01\";i:19;s:19:\"2022-05-18 14:00:16\";i:20;s:19:\"2022-05-18 14:08:40\";i:21;s:19:\"2022-05-19 04:39:16\";i:22;s:19:\"2022-05-19 04:39:49\";i:23;s:19:\"2022-05-19 04:40:17\";i:24;s:19:\"2022-05-19 04:40:42\";i:25;s:19:\"2022-05-19 04:41:02\";i:26;s:19:\"2022-05-19 04:43:10\";i:27;s:19:\"2022-05-19 04:43:38\";i:28;s:19:\"2022-05-19 04:44:17\";i:29;s:19:\"2022-05-19 05:09:05\";i:30;s:19:\"2022-05-19 05:19:14\";i:31;s:19:\"2022-05-19 05:23:28\";i:32;s:19:\"2022-05-19 05:45:18\";i:33;s:19:\"2022-05-19 05:51:19\";i:34;s:19:\"2022-05-19 05:57:15\";i:35;s:19:\"2022-05-19 06:08:25\";i:36;s:19:\"2022-05-19 06:09:05\";i:37;s:19:\"2022-05-19 06:17:37\";i:38;s:19:\"2022-05-19 06:17:55\";i:39;s:19:\"2022-05-19 06:38:35\";i:40;s:19:\"2022-05-19 07:04:30\";i:41;s:19:\"2022-05-19 07:07:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"4f894d998cf5b10a4feb2e4f3acc18ee\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-05-16 07:32:26\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:109:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:109:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:94:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/metform/controls/base.php\";s:4:\"line\";i:46;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:102;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-05-18 12:19:00\";i:1;s:19:\"2022-05-18 12:30:36\";i:2;s:19:\"2022-05-18 12:31:38\";i:3;s:19:\"2022-05-18 12:32:04\";i:4;s:19:\"2022-05-18 12:33:53\";i:5;s:19:\"2022-05-18 12:38:40\";i:6;s:19:\"2022-05-18 12:41:06\";i:7;s:19:\"2022-05-18 12:45:16\";i:8;s:19:\"2022-05-18 12:55:40\";i:9;s:19:\"2022-05-18 12:56:00\";i:10;s:19:\"2022-05-18 13:18:57\";i:11;s:19:\"2022-05-18 13:43:47\";i:12;s:19:\"2022-05-18 13:44:03\";i:13;s:19:\"2022-05-18 13:44:28\";i:14;s:19:\"2022-05-18 13:46:00\";i:15;s:19:\"2022-05-18 13:46:31\";i:16;s:19:\"2022-05-18 13:47:47\";i:17;s:19:\"2022-05-18 13:58:52\";i:18;s:19:\"2022-05-18 14:00:01\";i:19;s:19:\"2022-05-18 14:00:16\";i:20;s:19:\"2022-05-18 14:08:40\";i:21;s:19:\"2022-05-19 04:39:16\";i:22;s:19:\"2022-05-19 04:39:49\";i:23;s:19:\"2022-05-19 04:40:17\";i:24;s:19:\"2022-05-19 04:40:42\";i:25;s:19:\"2022-05-19 04:41:02\";i:26;s:19:\"2022-05-19 04:43:10\";i:27;s:19:\"2022-05-19 04:43:38\";i:28;s:19:\"2022-05-19 04:44:17\";i:29;s:19:\"2022-05-19 05:09:05\";i:30;s:19:\"2022-05-19 05:19:14\";i:31;s:19:\"2022-05-19 05:23:28\";i:32;s:19:\"2022-05-19 05:45:18\";i:33;s:19:\"2022-05-19 05:51:19\";i:34;s:19:\"2022-05-19 05:57:15\";i:35;s:19:\"2022-05-19 06:08:25\";i:36;s:19:\"2022-05-19 06:09:05\";i:37;s:19:\"2022-05-19 06:17:37\";i:38;s:19:\"2022-05-19 06:17:55\";i:39;s:19:\"2022-05-19 06:38:35\";i:40;s:19:\"2022-05-19 07:04:30\";i:41;s:19:\"2022-05-19 07:07:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"8e947e8705854553d9f45c3a7ff4ba8f\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-05-16 07:32:26\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:109:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:155:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/jeg-elementor-kit/lib/jeg-element/includes/class/elementor/class-elementor-manager.php\";s:4:\"line\";i:66;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:79:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-includes/class-wp-hook.php\";s:4:\"line\";i:307;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:39:\"Jeg\\Element\\Elementor\\Elementor_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:204;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-05-19 04:39:16\";i:1;s:19:\"2022-05-19 04:39:16\";i:2;s:19:\"2022-05-19 04:39:49\";i:3;s:19:\"2022-05-19 04:39:49\";i:4;s:19:\"2022-05-19 04:40:17\";i:5;s:19:\"2022-05-19 04:40:17\";i:6;s:19:\"2022-05-19 04:40:42\";i:7;s:19:\"2022-05-19 04:40:42\";i:8;s:19:\"2022-05-19 04:41:02\";i:9;s:19:\"2022-05-19 04:41:02\";i:10;s:19:\"2022-05-19 04:43:10\";i:11;s:19:\"2022-05-19 04:43:10\";i:12;s:19:\"2022-05-19 04:43:38\";i:13;s:19:\"2022-05-19 04:43:38\";i:14;s:19:\"2022-05-19 04:44:17\";i:15;s:19:\"2022-05-19 04:44:17\";i:16;s:19:\"2022-05-19 05:09:05\";i:17;s:19:\"2022-05-19 05:09:05\";i:18;s:19:\"2022-05-19 05:19:14\";i:19;s:19:\"2022-05-19 05:19:14\";i:20;s:19:\"2022-05-19 05:23:28\";i:21;s:19:\"2022-05-19 05:23:28\";i:22;s:19:\"2022-05-19 05:45:18\";i:23;s:19:\"2022-05-19 05:45:18\";i:24;s:19:\"2022-05-19 05:51:19\";i:25;s:19:\"2022-05-19 05:51:19\";i:26;s:19:\"2022-05-19 05:57:15\";i:27;s:19:\"2022-05-19 05:57:15\";i:28;s:19:\"2022-05-19 06:08:25\";i:29;s:19:\"2022-05-19 06:08:25\";i:30;s:19:\"2022-05-19 06:09:05\";i:31;s:19:\"2022-05-19 06:09:05\";i:32;s:19:\"2022-05-19 06:17:37\";i:33;s:19:\"2022-05-19 06:17:37\";i:34;s:19:\"2022-05-19 06:17:55\";i:35;s:19:\"2022-05-19 06:17:55\";i:36;s:19:\"2022-05-19 06:38:35\";i:37;s:19:\"2022-05-19 06:38:35\";i:38;s:19:\"2022-05-19 07:04:30\";i:39;s:19:\"2022-05-19 07:04:30\";i:40;s:19:\"2022-05-19 07:07:22\";i:41;s:19:\"2022-05-19 07:07:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"1ede67e2a6e7504eadad38c07bcc8b2d\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:140:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php\";s:7:\"\0*\0line\";i:180;s:7:\"\0*\0date\";s:19:\"2022-05-16 10:41:43\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:56:\"unlink(top-header-scaled.jpg): No such file or directory\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-16 10:41:43\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:56:\"unlink(top-header-scaled.jpg): No such file or directory\";s:4:\"file\";s:140:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php\";s:4:\"line\";i:180;s:5:\"trace\";b:1;}}s:32:\"12d76e638da6d0af6ac6365594cddcde\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"515479\";s:7:\"\0*\0file\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-05-16 13:33:44\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:76:\"Cannot read properties of null (reading \\&#039;getBoundingClientRect\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2022-05-16 13:33:44\";i:1;s:19:\"2022-05-18 11:22:56\";i:2;s:19:\"2022-05-18 11:25:51\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652708024\";s:7:\"message\";s:66:\"Cannot read properties of null (reading \\\'getBoundingClientRect\\\')\";s:3:\"url\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"515479\";}}s:32:\"8b8c6294507a407b44e9118820b8bcad\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"450542\";s:7:\"\0*\0file\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-05-18 04:28:33\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:32:\"T.getContainer is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:14;s:14:\"\0*\0times_dates\";a:14:{i:0;s:19:\"2022-05-18 04:28:33\";i:1;s:19:\"2022-05-18 12:04:17\";i:2;s:19:\"2022-05-18 12:04:20\";i:3;s:19:\"2022-05-18 12:04:29\";i:4;s:19:\"2022-05-18 12:05:02\";i:5;s:19:\"2022-05-18 12:42:46\";i:6;s:19:\"2022-05-18 12:43:19\";i:7;s:19:\"2022-05-18 12:43:23\";i:8;s:19:\"2022-05-18 12:46:55\";i:9;s:19:\"2022-05-18 12:47:04\";i:10;s:19:\"2022-05-18 12:47:46\";i:11;s:19:\"2022-05-19 04:48:19\";i:12;s:19:\"2022-05-19 04:51:50\";i:13;s:19:\"2022-05-19 04:53:18\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652848113\";s:7:\"message\";s:32:\"T.getContainer is not a function\";s:3:\"url\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"450542\";}}s:32:\"2cc3fadf832176ee6086ee0cb2692535\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:114:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:7:\"\0*\0line\";i:171;s:7:\"\0*\0date\";s:19:\"2022-05-18 11:48:56\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:21:\"Undefined index: data\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-18 11:48:56\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:21:\"Undefined index: data\";s:4:\"file\";s:114:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:4:\"line\";i:171;s:5:\"trace\";b:1;}}s:32:\"8810812f0a46fdb278844fd8f7345402\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-05-18 13:18:57\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:8:\"function\";s:13:\"trigger_error\";}i:2;a:5:{s:4:\"file\";s:109:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:523;s:8:\"function\";s:19:\"deprecated_argument\";s:5:\"class\";s:38:\"Elementor\\Modules\\DevTools\\Deprecation\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:109:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/includes/managers/controls.php\";s:4:\"line\";i:501;s:8:\"function\";s:8:\"register\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:119:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/ht-mega-for-elementor/includes/widgets_control.php\";s:4:\"line\";i:31;s:8:\"function\";s:16:\"register_control\";s:5:\"class\";s:26:\"Elementor\\Controls_Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:32;s:14:\"\0*\0times_dates\";a:32:{i:0;s:19:\"2022-05-18 13:18:57\";i:1;s:19:\"2022-05-18 13:43:47\";i:2;s:19:\"2022-05-18 13:44:03\";i:3;s:19:\"2022-05-18 13:44:28\";i:4;s:19:\"2022-05-18 13:46:00\";i:5;s:19:\"2022-05-18 13:46:31\";i:6;s:19:\"2022-05-18 13:47:47\";i:7;s:19:\"2022-05-18 13:58:52\";i:8;s:19:\"2022-05-18 14:00:01\";i:9;s:19:\"2022-05-18 14:00:16\";i:10;s:19:\"2022-05-18 14:08:40\";i:11;s:19:\"2022-05-19 04:39:16\";i:12;s:19:\"2022-05-19 04:39:49\";i:13;s:19:\"2022-05-19 04:40:17\";i:14;s:19:\"2022-05-19 04:40:42\";i:15;s:19:\"2022-05-19 04:41:02\";i:16;s:19:\"2022-05-19 04:43:10\";i:17;s:19:\"2022-05-19 04:43:38\";i:18;s:19:\"2022-05-19 04:44:17\";i:19;s:19:\"2022-05-19 05:09:05\";i:20;s:19:\"2022-05-19 05:19:14\";i:21;s:19:\"2022-05-19 05:23:28\";i:22;s:19:\"2022-05-19 05:45:18\";i:23;s:19:\"2022-05-19 05:51:19\";i:24;s:19:\"2022-05-19 05:57:15\";i:25;s:19:\"2022-05-19 06:08:25\";i:26;s:19:\"2022-05-19 06:09:05\";i:27;s:19:\"2022-05-19 06:17:37\";i:28;s:19:\"2022-05-19 06:17:55\";i:29;s:19:\"2022-05-19 06:38:35\";i:30;s:19:\"2022-05-19 07:04:30\";i:31;s:19:\"2022-05-19 07:07:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:112:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}s:32:\"b62e9059d7d1d4978202c421165706d8\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:2:\"45\";s:7:\"\0*\0file\";s:127:\"https://demoweblinks.in/aahan/wp-content/plugins/ht-mega-for-elementor/admin/assets/js/elementors_template_library.js?ver=1.8.7\";s:7:\"\0*\0line\";s:3:\"408\";s:7:\"\0*\0date\";s:19:\"2022-05-18 13:44:53\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:66:\"Cannot read properties of null (reading \\&#039;toLowerCase\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:12;s:14:\"\0*\0times_dates\";a:12:{i:0;s:19:\"2022-05-18 13:44:53\";i:1;s:19:\"2022-05-18 13:44:58\";i:2;s:19:\"2022-05-18 13:45:00\";i:3;s:19:\"2022-05-18 13:45:02\";i:4;s:19:\"2022-05-18 13:45:02\";i:5;s:19:\"2022-05-18 13:45:21\";i:6;s:19:\"2022-05-18 13:45:46\";i:7;s:19:\"2022-05-18 13:46:20\";i:8;s:19:\"2022-05-18 13:46:23\";i:9;s:19:\"2022-05-18 13:46:25\";i:10;s:19:\"2022-05-18 13:46:25\";i:11;s:19:\"2022-05-18 13:55:28\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652881493\";s:7:\"message\";s:56:\"Cannot read properties of null (reading \\\'toLowerCase\\\')\";s:3:\"url\";s:127:\"https://demoweblinks.in/aahan/wp-content/plugins/ht-mega-for-elementor/admin/assets/js/elementors_template_library.js?ver=1.8.7\";s:4:\"line\";s:3:\"408\";s:6:\"column\";s:2:\"45\";}}s:32:\"eeb08796e19bea4ff574e553b35bf9e4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:2:\"87\";s:7:\"\0*\0file\";s:127:\"https://demoweblinks.in/aahan/wp-content/plugins/ht-mega-for-elementor/admin/assets/js/elementors_template_library.js?ver=1.8.7\";s:7:\"\0*\0line\";s:2:\"56\";s:7:\"\0*\0date\";s:19:\"2022-05-18 13:45:52\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:49:\"htmega.library.updateBlocksView is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-18 13:45:52\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652881552\";s:7:\"message\";s:49:\"htmega.library.updateBlocksView is not a function\";s:3:\"url\";s:127:\"https://demoweblinks.in/aahan/wp-content/plugins/ht-mega-for-elementor/admin/assets/js/elementors_template_library.js?ver=1.8.7\";s:4:\"line\";s:2:\"56\";s:6:\"column\";s:2:\"87\";}}s:32:\"2bc21a0d7d6ce4d6b64bea565a9a6e77\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"13282\";s:7:\"\0*\0file\";s:100:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.6.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-05-19 05:03:12\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:23:\"r.get is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:11;s:14:\"\0*\0times_dates\";a:11:{i:0;s:19:\"2022-05-19 05:03:12\";i:1;s:19:\"2022-05-19 05:03:12\";i:2;s:19:\"2022-05-19 05:07:21\";i:3;s:19:\"2022-05-19 05:07:21\";i:4;s:19:\"2022-05-19 05:07:35\";i:5;s:19:\"2022-05-19 05:07:35\";i:6;s:19:\"2022-05-19 05:07:35\";i:7;s:19:\"2022-05-19 05:07:35\";i:8;s:19:\"2022-05-19 05:07:35\";i:9;s:19:\"2022-05-19 05:07:35\";i:10;s:19:\"2022-05-19 05:08:06\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652936592\";s:7:\"message\";s:23:\"r.get is not a function\";s:3:\"url\";s:100:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.6.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"13282\";}}s:32:\"a0f5a4216f82d2ee794d93e10937c8dd\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"368805\";s:7:\"\0*\0file\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-05-19 05:03:22\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:70:\"Cannot read properties of undefined (reading \\&#039;isEditable\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2022-05-19 05:03:22\";i:1;s:19:\"2022-05-19 05:03:27\";i:2;s:19:\"2022-05-19 05:03:29\";i:3;s:19:\"2022-05-19 05:03:32\";i:4;s:19:\"2022-05-19 05:03:35\";i:5;s:19:\"2022-05-19 05:03:38\";i:6;s:19:\"2022-05-19 05:03:39\";i:7;s:19:\"2022-05-19 05:03:39\";i:8;s:19:\"2022-05-19 05:03:41\";i:9;s:19:\"2022-05-19 05:03:43\";i:10;s:19:\"2022-05-19 05:03:47\";i:11;s:19:\"2022-05-19 05:03:59\";i:12;s:19:\"2022-05-19 05:07:48\";i:13;s:19:\"2022-05-19 05:07:51\";i:14;s:19:\"2022-05-19 05:07:53\";i:15;s:19:\"2022-05-19 05:07:56\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652936602\";s:7:\"message\";s:60:\"Cannot read properties of undefined (reading \\\'isEditable\\\')\";s:3:\"url\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"368805\";}}s:32:\"da7e570f2254cdfaf8633d7112ec725d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"381982\";s:7:\"\0*\0file\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-05-19 05:07:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:72:\"Cannot read properties of undefined (reading \\&#039;isDesignable\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-19 05:07:35\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1652936855\";s:7:\"message\";s:62:\"Cannot read properties of undefined (reading \\\'isDesignable\\\')\";s:3:\"url\";s:92:\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.6.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"381982\";}}s:32:\"5f7094f7c85772a0f3076c3807428b57\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:114:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:7:\"\0*\0line\";i:265;s:7:\"\0*\0date\";s:19:\"2022-05-19 06:17:55\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:83:\"Allowed memory size of 268435456 bytes exhausted (tried to allocate 40831896 bytes)\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-19 06:17:55\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:83:\"Allowed memory size of 268435456 bytes exhausted (tried to allocate 40831896 bytes)\";s:4:\"file\";s:114:\"/home2/assarbbq/public_html/demoweblinks.in/aahan/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:4:\"line\";i:265;s:5:\"trace\";b:1;}}}','no'),(211,'envato_elements_options','a:1:{i:1;a:1:{s:16:\"downloaded_items\";a:18:{s:70:\"69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9-6812e0ebdea7c8ccaeafaaa60ac8c626\";i:56;s:71:\"104-3-acbd8ca7eb3c3f4d0d9a38e9c0159198-6812e0ebdea7c8ccaeafaaa60ac8c626\";i:78;s:71:\"135-3-c665d4805631b9a8bf464e65129b2f58-f549d6f41a8696611903130bfd21bd6d\";i:88;s:71:\"144-3-3a7d335f39a8579c20cdf02f8d462582-2632398b8d87c2c7ea821fd1da9f8d68\";i:111;s:70:\"72-3-34d2cc762876498c8f6be5405a48e6e2-254ffd9d75329549830d73c3cf81b218\";i:114;s:71:\"143-3-7969bb877702491bc5ca272e536ada9d-fb4d8b923f119ae99abb98223878c2e7\";i:123;s:71:\"105-3-0fb64e69c49a8e10692d28840c54ef95-6f08bbe821168df88cb9fcfc80facf8b\";i:133;s:71:\"141-3-1d55f1e76be9fb1a8d9de88accbe962f-b0ab270b92fd705df74cb95f5ccc3509\";i:185;s:71:\"135-3-c665d4805631b9a8bf464e65129b2f58-4426eb83647cc19026204146e00380c9\";i:272;s:70:\"72-3-34d2cc762876498c8f6be5405a48e6e2-0be6118f9897f825c4e89e419ae5ff56\";i:278;s:71:\"136-3-fc37602abad173a9d9d95d89bbe6bb80-266a22f51430fe595e87bd54f96d1079\";i:288;s:70:\"69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9-530d7568416db642867d55cf5a3a7afe\";i:337;s:71:\"136-3-fc37602abad173a9d9d95d89bbe6bb80-189d073db3d9fcea40fd2444c5f1e428\";i:341;s:70:\"69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9-2c3686864efc7277205de9d87007a001\";i:368;s:71:\"141-3-1d55f1e76be9fb1a8d9de88accbe962f-de84b8b098db0b35bd8c9a0b8f761f55\";i:406;s:71:\"105-3-0fb64e69c49a8e10692d28840c54ef95-4426eb83647cc19026204146e00380c9\";i:425;s:71:\"143-3-7969bb877702491bc5ca272e536ada9d-12138c4dd1366216558ffec031263fe7\";i:429;s:70:\"33-3-f2d4515681d0cdeb2a000d0405e47669-f6791ecdca8610f06982616b267274a6\";i:433;}}}','no'),(213,'metform__banner_last_check','1652934618','yes'),(214,'metform__banner_data','O:8:\"stdClass\":8:{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\";}}s:8:\"10007137\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007137;s:5:\"title\";s:31:\"Wpmet Summer Campaign Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";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\";}}s:8:\"10007133\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007133;s:5:\"title\";s:17:\"Wpmet Summer Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:19:\"plugin_install_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:36:\"https://wpmet.com/banner/summer-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Banner.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:20:\"summercampaignbanner\";}}s:8:\"10007086\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007086;s:5:\"title\";s:27:\"NPS/Buyer Persona Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1646179200;s:3:\"end\";i:1646956800;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:225:\"Share your experience with Wpmet — take part in a 2-minute survey to win exclusive <strong>discounts, gift cards, and more surprises!</strong>\r\n\r\n<a href=\"https://wpmet.com/we-need-your-feedback/\">Participate to Win →</a>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/03/InPlugin-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:9:\"npsbanner\";}}s:8:\"10007076\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007076;s:5:\"title\";s:24:\"Wpmet Flash Sale 22.2.22\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1645488000;s:3:\"end\";i:1645747200;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:35:\"https://wpmet.com/banner/flash-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:17:\"flashsale22banner\";}}s:8:\"10007061\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007061;s:5:\"title\";s:23:\"Wpmet Flash Sale 2.2.22\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1643846400;s:3:\"end\";i:1644192000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:35:\"https://wpmet.com/banner/flash-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:17:\"flashsale22banner\";}}s:8:\"10007014\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007014;s:5:\"title\";s:40:\"Wpmet Holiday Deal 2021 (updated by CEO)\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1639958400;s:3:\"end\";i:1642204800;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:38:\"https://wpmet.com/banner/holiday-deals\";s:12:\"banner_image\";s:81:\"https://api.wpmet.com/auth/wp-content/uploads/2021/12/Holiday-InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:22:\"holidaydeal2022banner2\";}}s:8:\"10006865\";O:8:\"stdClass\":7:{s:2:\"id\";i:10006865;s:5:\"title\";s:46:\"Holiday Sale 2021 - dashboard (updated by CEO)\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1643846400;s:3:\"end\";i:1644105600;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:792:\"<span style=\"font-size: 16px;\">ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and <strong style=\"color: green;\">save up to 70% instantly</strong> throughout this <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins in a bundle plan and save 70% instantly throughout this 48-hour Flash Sale!&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:27393,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:3,&quot;3&quot;:1},&quot;16&quot;:10,&quot;17&quot;:1}\">48-hour Flash Sale!</span></span>\r\n\r\n<a href=\"https://wpmet.com/notice/blackfriday\" target=\"_blank\" rel=\"noopener\">Claim Yours →</a>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-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:19:\"flashsale2022banner\";}}}','yes'),(215,'elementskit-lite__banner_last_check','1652934619','yes'),(216,'elementskit-lite__banner_data','O:8:\"stdClass\":8:{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\";}}s:8:\"10007137\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007137;s:5:\"title\";s:31:\"Wpmet Summer Campaign Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";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\";}}s:8:\"10007133\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007133;s:5:\"title\";s:17:\"Wpmet Summer Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:19:\"plugin_install_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:36:\"https://wpmet.com/banner/summer-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Banner.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:20:\"summercampaignbanner\";}}s:8:\"10007086\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007086;s:5:\"title\";s:27:\"NPS/Buyer Persona Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1646179200;s:3:\"end\";i:1646956800;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:225:\"Share your experience with Wpmet — take part in a 2-minute survey to win exclusive <strong>discounts, gift cards, and more surprises!</strong>\r\n\r\n<a href=\"https://wpmet.com/we-need-your-feedback/\">Participate to Win →</a>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/03/InPlugin-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:9:\"npsbanner\";}}s:8:\"10007076\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007076;s:5:\"title\";s:24:\"Wpmet Flash Sale 22.2.22\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1645488000;s:3:\"end\";i:1645747200;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:35:\"https://wpmet.com/banner/flash-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:17:\"flashsale22banner\";}}s:8:\"10007061\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007061;s:5:\"title\";s:23:\"Wpmet Flash Sale 2.2.22\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1643846400;s:3:\"end\";i:1644192000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:35:\"https://wpmet.com/banner/flash-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:17:\"flashsale22banner\";}}s:8:\"10007014\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007014;s:5:\"title\";s:40:\"Wpmet Holiday Deal 2021 (updated by CEO)\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1639958400;s:3:\"end\";i:1642204800;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:38:\"https://wpmet.com/banner/holiday-deals\";s:12:\"banner_image\";s:81:\"https://api.wpmet.com/auth/wp-content/uploads/2021/12/Holiday-InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:22:\"holidaydeal2022banner2\";}}s:8:\"10006865\";O:8:\"stdClass\":7:{s:2:\"id\";i:10006865;s:5:\"title\";s:46:\"Holiday Sale 2021 - dashboard (updated by CEO)\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1643846400;s:3:\"end\";i:1644105600;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:792:\"<span style=\"font-size: 16px;\">ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and <strong style=\"color: green;\">save up to 70% instantly</strong> throughout this <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins in a bundle plan and save 70% instantly throughout this 48-hour Flash Sale!&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:27393,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:3,&quot;3&quot;:1},&quot;16&quot;:10,&quot;17&quot;:1}\">48-hour Flash Sale!</span></span>\r\n\r\n<a href=\"https://wpmet.com/notice/blackfriday\" target=\"_blank\" rel=\"noopener\">Claim Yours →</a>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-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:19:\"flashsale2022banner\";}}}','yes'),(217,'elementskit-lite_install_date','2022-05-16 05:16:45','yes'),(218,'metform_install_date','2022-05-16 05:16:45','yes'),(221,'jeg-dynamic-css','','yes'),(237,'elementor_pro_license_key','activated','yes'),(238,'_transient_elementor_pro_license_data','a:2:{s:7:\"license\";s:5:\"valid\";s:7:\"expires\";s:12:\"May 19, 2023\";}','yes'),(239,'_transient_timeout_elementor_pro_license_data','36001040400','yes'),(240,'elementor_pro_version','3.6.4','yes'),(241,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(242,'_elementor_pro_installed_time','1652679209','yes'),(243,'elementor_submissions_db_version','5','yes'),(244,'elementor_fonts_manager_font_types','a:0:{}','yes'),(245,'elementor_fonts_manager_fonts','a:0:{}','yes'),(246,'elementor_custom_icon_sets_config','a:0:{}','yes'),(253,'ea1d43322_eael_updated_at','1652933303','no'),(256,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(257,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(268,'elementskit-lite__stories_last_check','1652795129','yes'),(269,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10007159\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007159;s:5:\"title\";s:61:\"First Look at New Elementor Pro Forms Features by ElementsKit\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:47:\"https://wpmet.com/elementor-pro-forms-features/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007158\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007158;s:5:\"title\";s:38:\"How to Use Elementor Flexbox Container\";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:57:\"https://wpmet.com/how-to-use-elementor-flexbox-container/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007157\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007157;s:5:\"title\";s:23:\"WooCommerce VS OpenCart\";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:42:\"https://wpmet.com/woocommerce-vs-opencart/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007156\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007156;s:5:\"title\";s:49:\"How to Add Social Share Buttons to WordPress site\";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:61:\"https://wpmet.com/add-social-share-buttons-to-wordpress-site/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007155\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007155;s:5:\"title\";s:55:\"How to Add WooCommerce Variable Product to your Website\";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/how-to-add-woocommerce-variable-product/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007154\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007154;s:5:\"title\";s:60:\"How to Add WooCommerce Extra Checkout Fields in Just 3 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-add-woocommerce-extra-checkout-fields/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007153\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007153;s:5:\"title\";s:52:\"Why You Must Avoid Nulled WordPress Plugins & Themes\";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/nulled-wordpress-plugins-themes/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007147\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007147;s:5:\"title\";s:44:\"Facebook Pixel for WooCommerce and 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:63:\"https://wpmet.com/facebook-pixel-for-woocommerce-and-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:\"10007146\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007146;s:5:\"title\";s:23:\"Meet Google Analytics 4\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:44:\"https://wpmet.com/google-analytics-4-update/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007131\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007131;s:5:\"title\";s:21:\"Wpmet Summer Campaign\";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:14:\"test-wp-social\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:35:\"https://wpmet.com/story/summer-sale\";s:11:\"story_image\";s:74:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Story-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(270,'wpins_block_notice','a:1:{s:25:\"essential_adons_elementor\";s:25:\"essential_adons_elementor\";}','yes'),(275,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),(276,'current_theme','Twenty Twenty','yes'),(277,'theme_mods_twentytwenty','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:8:\"expanded\";i:4;s:6:\"mobile\";i:4;s:6:\"footer\";i:4;}s:18:\"custom_css_post_id\";i:90;s:11:\"custom_logo\";i:174;}','yes'),(278,'theme_switched','','yes'),(279,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(280,'elementskit_options','a:2:{s:17:\"megamenu_settings\";a:1:{s:15:\"menu_location_4\";a:1:{s:10:\"is_enabled\";i:0;}}s:8:\"settings\";a:2:{s:16:\"newsletter_email\";s:0:\"\";s:8:\"tut_term\";s:11:\"user_agreed\";}}','yes'),(293,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1652933087;}','yes'),(297,'give_settings','a:59:{s:12:\"base_country\";s:2:\"IN\";s:9:\"test_mode\";s:7:\"enabled\";s:8:\"currency\";s:3:\"INR\";s:17:\"currency_position\";s:6:\"before\";s:16:\"session_lifetime\";s:6:\"604800\";s:12:\"email_access\";s:7:\"enabled\";s:19:\"thousands_separator\";s:1:\",\";s:17:\"decimal_separator\";s:1:\".\";s:15:\"number_decimals\";i:2;s:26:\"sequential-ordering_status\";s:7:\"enabled\";s:3:\"css\";s:7:\"enabled\";s:11:\"floatlabels\";s:8:\"disabled\";s:13:\"company_field\";s:8:\"disabled\";s:17:\"name_title_prefix\";s:8:\"disabled\";s:14:\"forms_singular\";s:7:\"enabled\";s:14:\"forms_archives\";s:7:\"enabled\";s:13:\"forms_excerpt\";s:7:\"enabled\";s:17:\"form_featured_img\";s:7:\"enabled\";s:12:\"form_sidebar\";s:7:\"enabled\";s:10:\"categories\";s:8:\"disabled\";s:4:\"tags\";s:8:\"disabled\";s:5:\"terms\";s:8:\"disabled\";s:13:\"admin_notices\";s:7:\"enabled\";s:5:\"cache\";s:7:\"enabled\";s:19:\"uninstall_on_delete\";s:8:\"disabled\";s:18:\"the_content_filter\";s:7:\"enabled\";s:14:\"scripts_footer\";s:8:\"disabled\";s:20:\"agree_to_terms_label\";s:15:\"Agree to Terms?\";s:14:\"agreement_text\";s:1873:\"<p>Acceptance of any contribution, gift or grant is at the discretion of the Aahan. The  Aahan will not accept any gift unless it can be used or expended consistently with the purpose and mission of the  Aahan.</p>\n				<p>No irrevocable gift, whether outright or life-income in character, will be accepted if under any reasonable set of circumstances the gift would jeopardize the donor’s financial security.</p>\n				<p>The Aahan will refrain from providing advice about the tax or other treatment of gifts and will encourage donors to seek guidance from their own professional advisers to assist them in the process of making their donation.</p>\n				<p>The Aahan will accept donations of cash or publicly traded securities. Gifts of in-kind services will be accepted at the discretion of the Aahan.</p>\n				<p>Certain other gifts, real property, personal property, in-kind gifts, non-liquid securities, and contributions whose sources are not transparent or whose use is restricted in some manner, must be reviewed prior to acceptance due to the special obligations raised or liabilities they may pose for Aahan.</p>\n				<p>The Aahan will provide acknowledgments to donors meeting tax requirements for property received by the charity as a gift. However, except for gifts of cash and publicly traded securities, no value shall be ascribed to any receipt or other form of substantiation of a gift received by Aahan.</p>\n				<p>The Aahan will respect the intent of the donor relating to gifts for restricted purposes and those relating to the desire to remain anonymous. With respect to anonymous gifts, the Aahan will restrict information about the donor to only those staff members with a need to know.</p>\n				<p>The Aahan will not compensate, whether through commissions, finders\' fees, or other means, any third party for directing a gift or a donor to the Aahan.</p>\";s:21:\"babel_polyfill_script\";s:7:\"enabled\";s:8:\"gateways\";a:4:{s:6:\"manual\";s:1:\"1\";s:7:\"offline\";s:1:\"1\";s:6:\"paypal\";s:1:\"1\";s:15:\"paypal-commerce\";s:1:\"1\";}s:15:\"default_gateway\";s:6:\"paypal\";s:31:\"global_offline_donation_content\";s:331:\"<p>To make an offline donation toward this cause, follow these steps: </p><ol><li>Write a check payable to \"{sitename}\"</li><li>On the memo line of the check, indicate that the donation is for \"{sitename}\"</li><li>Mail your check to:</li></ol>{offline_mailing_address}<br><p>Your tax-deductible donation is greatly appreciated!</p>\";s:43:\"give_offline_donation_enable_billing_fields\";s:8:\"disabled\";s:23:\"donor_default_user_role\";s:10:\"give_donor\";s:20:\"form_page_url_prefix\";s:4:\"give\";s:29:\"_give_stripe_get_all_accounts\";a:0:{}s:18:\"setup_page_enabled\";s:7:\"enabled\";s:14:\"usage_tracking\";s:8:\"disabled\";s:26:\"sequential-ordering_number\";i:2;s:42:\"offline-donation-instruction_email_message\";s:331:\"<p>To make an offline donation toward this cause, follow these steps: </p><ol><li>Write a check payable to \"{sitename}\"</li><li>On the memo line of the check, indicate that the donation is for \"{sitename}\"</li><li>Mail your check to:</li></ol>{offline_mailing_address}<br><p>Your tax-deductible donation is greatly appreciated!</p>\";s:30:\"donation-receipt_email_message\";s:394:\"Dear {name},\n\nThank you for your donation. Your generosity is appreciated! Here are the details of your donation:\n\n<strong>Donor:</strong> {fullname}\n<strong>Donation:</strong> {donation}\n<strong>Donation Date:</strong> {date}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n<strong>Payment ID:</strong> {payment_id}\n\n{receipt_link}\n\n\n\nSincerely,\n{sitename}\n\";s:26:\"new-donation_email_message\";s:280:\"Hi there,\n\nThis email is to inform you that a new donation has been made on your website: {site_url}.\n\n<strong>Donor:</strong> {name}\n<strong>Donation:</strong> {donation}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n\nThank you,\n\n{sitename}\n\";s:22:\"new-donation_recipient\";a:1:{i:0;s:17:\"brains@amaeka.com\";}s:30:\"new-offline-donation_recipient\";a:1:{i:0;s:17:\"brains@amaeka.com\";}s:28:\"new-donor-register_recipient\";a:1:{i:0;s:17:\"brains@amaeka.com\";}s:25:\"new-donation_notification\";s:7:\"enabled\";s:12:\"success_page\";i:97;s:12:\"failure_page\";i:98;s:20:\"donor_dashboard_page\";i:99;s:41:\"override_legacy_donation_management_pages\";s:7:\"enabled\";s:12:\"history_page\";i:99;s:18:\"subscriptions_page\";i:99;s:9:\"user_type\";s:12:\"organization\";s:10:\"cause_type\";s:9:\"education\";s:10:\"base_state\";s:2:\"KL\";s:14:\"gateways_label\";a:8:{s:6:\"manual\";s:0:\"\";s:7:\"offline\";s:0:\"\";s:6:\"stripe\";s:0:\"\";s:15:\"stripe_checkout\";s:0:\"\";s:11:\"stripe_sepa\";s:0:\"\";s:11:\"stripe_becs\";s:0:\"\";s:6:\"paypal\";s:0:\"\";s:15:\"paypal-commerce\";s:0:\"\";}s:33:\"new-offline-donation_notification\";s:7:\"enabled\";s:41:\"offline-donation-instruction_notification\";s:7:\"enabled\";}','no'),(298,'give_default_api_version','v1','no'),(299,'wp_give_donors_db_version','1.0','no'),(300,'wp_give_donormeta_db_version','1.0','no'),(301,'wp_give_comments_db_version','1.0','no'),(302,'wp_give_commentmeta_db_version','1.0','no'),(303,'wp_give_sessions_db_version','1.0','no'),(304,'wp_give_formmeta_db_version','1.0','no'),(305,'wp_give_sequential_ordering_db_version','1.0','no'),(306,'wp_give_donationmeta_db_version','1.0','no'),(308,'give_completed_upgrades','a:41:{i:0;b:0;i:1;s:25:\"v18_upgrades_core_setting\";i:2;s:30:\"v220_rename_donation_meta_type\";i:3;s:38:\"v270_store_stripe_account_for_donation\";i:4;s:30:\"upgrade_give_user_caps_cleanup\";i:5;s:32:\"upgrade_give_payment_customer_id\";i:6;s:27:\"upgrade_give_offline_status\";i:7;s:26:\"v18_upgrades_form_metadata\";i:8;s:30:\"v189_upgrades_levels_post_meta\";i:9;s:26:\"v1812_update_amount_values\";i:10;s:34:\"v1812_update_donor_purchase_values\";i:11;s:23:\"v1813_update_user_roles\";i:12;s:29:\"v1813_update_donor_user_roles\";i:13;s:43:\"v1817_update_donation_iranian_currency_code\";i:14;s:24:\"v1817_cleanup_user_roles\";i:15;s:39:\"v1818_assign_custom_amount_set_donation\";i:16;s:30:\"v1818_give_worker_role_cleanup\";i:17;s:26:\"v20_upgrades_form_metadata\";i:18;s:17:\"v20_logs_upgrades\";i:19;s:32:\"v20_move_metadata_into_new_table\";i:20;s:23:\"v20_rename_donor_tables\";i:21;s:23:\"v20_upgrades_donor_name\";i:22;s:25:\"v20_upgrades_user_address\";i:23;s:29:\"v20_upgrades_payment_metadata\";i:24;s:30:\"v201_upgrades_payment_metadata\";i:25;s:23:\"v201_add_missing_donors\";i:26;s:33:\"v201_move_metadata_into_new_table\";i:27;s:18:\"v201_logs_upgrades\";i:28;s:32:\"v210_verify_form_status_upgrades\";i:29;s:25:\"v213_delete_donation_meta\";i:30;s:28:\"v215_update_donor_user_roles\";i:31;s:22:\"v224_update_donor_meta\";i:32;s:31:\"v224_update_donor_meta_forms_id\";i:33;s:20:\"v230_move_donor_note\";i:34;s:23:\"v230_move_donation_note\";i:35;s:41:\"v230_delete_donor_wall_related_donor_data\";i:36;s:43:\"v230_delete_donor_wall_related_comment_data\";i:37;s:30:\"v240_update_form_goal_progress\";i:38;s:21:\"v241_remove_sale_logs\";i:39;s:39:\"add-past-donation-data-to-revenue-table\";i:40;s:21:\"migrate_existing_logs\";}','no'),(309,'give_version','2.20.0','no'),(311,'widget_give_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(314,'give_install_pages_created','1','no'),(315,'_give_table_check','1653287608','no'),(316,'give_free_addon_modal_displayed','prevent:1:2.20.0','yes'),(317,'give_cache__give_ajax_works','a:2:{s:4:\"data\";s:1:\"1\";s:10:\"expiration\";i:1653021527;}','no'),(318,'give_onboarding','a:2:{s:7:\"form_id\";i:100;s:6:\"addons\";a:1:{i:0;s:12:\"pdf-receipts\";}}','yes'),(331,'crowdfundly_organization_page_id','104','yes'),(332,'crowdfundly_all_campaigns_page_id','105','yes'),(333,'crowdfundly_single_campaign_page_id','106','yes'),(334,'crowdfundly_url_update','1','yes'),(346,'cb70d11b8_eael_updated_at','1652933303','no'),(355,'_site_transient_timeout_browser_20974fba76ac68d3b08560343ae2118a','1653290327','no'),(356,'_site_transient_browser_20974fba76ac68d3b08560343ae2118a','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"101.0.4951.64\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(371,'give_earnings_total','100','no'),(437,'site_logo','174','yes'),(476,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:41:{s:9:\"icon-list\";a:2:{s:7:\"content\";s:125:\"<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:5:\"3.6.5\";}s:7:\"heading\";a:2:{s:7:\"content\";s:672:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5183:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:5:\"image\";a:2:{s:7:\"content\";s:268:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:19:\"elementskit-funfact\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:124:\"<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:5:\"3.6.5\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:258:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:7:\"gallery\";a:2:{s:7:\"content\";s:7674:\"<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:15:\"theme-site-logo\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.4\";}s:8:\"nav-menu\";a:2:{s:7:\"content\";s:128:\"<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css\">\";s:7:\"version\";s:5:\"3.6.4\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:718:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;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:5:\"3.6.5\";}s:5:\"forms\";a:2:{s:7:\"content\";s:6800:\"<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.e-form__buttons{-ms-flex-wrap:wrap;flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.e-form__indicators{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:nowrap;flex-wrap:nowrap;font-size:13px;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators,.e-form__indicators__indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.e-form__indicators__indicator{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-preferred-size:0;flex-basis:0;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{width:100%;position:relative;background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden}.e-form__indicators__indicator__progress__meter{width:var(--e-form-steps-indicator-progress-meter-width,0);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;border-radius:var(--e-form-steps-indicator-progress-border-radius);background-color:var(--e-form-steps-indicator-progress-color);color:var(--e-form-steps-indicator-progress-meter-color);text-align:right;-webkit-transition:width .1s linear;-o-transition:width .1s linear;transition:width .1s linear}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{color:var(--e-form-steps-indicator-active-primary-color,#39b54a);border-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a);background-color:initial}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);font-size:var(--e-form-steps-indicator-icon-size);border-width:1px;border-style:solid;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;margin-bottom:10px}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{width:var(--e-form-steps-indicator-icon-size);height:auto}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);border-width:1px;border-style:solid;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{width:100%;height:var(--e-form-steps-divider-width);background-color:#c2cbd2}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) / 2 - var(--e-form-steps-divider-width, 1px) / 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-login .elementor-lost-password,.elementor-login .elementor-remember-me{font-size:.85em}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.elementor-form .elementor-button>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}</style>\";s:7:\"version\";s:5:\"3.6.4\";}s:23:\"elementskit-progressbar\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:19:\"elementskit-heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:7:\"metform\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:9:\"image-box\";a:2:{s:7:\"content\";s:1770:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:7:\"divider\";a:2:{s:7:\"content\";s:3742:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:8:\"carousel\";a:2:{s:7:\"content\";s:128:\"<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">\";s:7:\"version\";s:5:\"3.6.4\";}s:14:\"image-carousel\";a:2:{s:7:\"content\";s:426:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:23:\"stratum-advanced-slider\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:4:\"icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:24:\"elementskit-social-share\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:11:\"testimonial\";a:2:{s:7:\"content\";s:1688:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:8:\"flip-box\";a:2:{s:7:\"content\";s:128:\"<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">\";s:7:\"version\";s:5:\"3.6.4\";}s:17:\"elementskit-video\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:20:\"elementskit-icon-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:13:\"image-gallery\";a:2:{s:7:\"content\";s:2473:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:16:\"elementskit-team\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:13:\"eael-info-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:5:\"video\";a:2:{s:7:\"content\";s:752:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-video .elementor-widget-container{overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-size:cover;background-position:50%}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{display:block;width:100%}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:29:\"htmega-working-process-addons\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:18:\"elementskit-button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:23:\"elementskit-testimonial\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:22:\"elementskit-blog-posts\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:27:\"elementskit-countdown-timer\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:23:\"elementskit-client-logo\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:19:\"elementskit-pricing\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:178:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:20:\"elementskit-timeline\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:21:\"elementskit-accordion\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}}}}','yes'),(480,'_elementor_global_css','a:7:{s:4:\"time\";i:1652707243;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'),(547,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":4,\"critical\":0}','yes'),(598,'ffd2804ff_eael_updated_at','1652935449','no'),(701,'8fea959d5_eael_updated_at','1652852793','no'),(783,'35bcb20ac_eael_updated_at','1652884075','no'),(808,'96481cb86_eael_elements','a:1:{i:24;s:8:\"info-box\";}','no'),(810,'96481cb86_eael_updated_at','1652942431','no'),(835,'_transient_timeout_give_premium_addons_ids','1652958689','no'),(836,'_transient_give_premium_addons_ids','a:54:{i:0;s:16:\"bitpay-donations\";i:1;s:11:\"agency-plan\";i:2;s:12:\"peer-to-peer\";i:3;s:8:\"pro-plan\";i:4;s:10:\"salesforce\";i:5;s:32:\"peer-to-peer-fundraising-suite-2\";i:6;s:30:\"peer-to-peer-fundraising-suite\";i:7;s:12:\"text-to-give\";i:8;s:19:\"peer-to-peer-legacy\";i:9;s:22:\"funds-and-designations\";i:10;s:14:\"activecampaign\";i:11;s:27:\"all-addons-priority-support\";i:12;s:15:\"pro-plan-legacy\";i:13;s:13:\"plus-bundle-2\";i:14;s:14:\"basic-bundle-2\";i:15;s:15:\"moneris-gateway\";i:16;s:14:\"square-gateway\";i:17;s:15:\"annual-receipts\";i:18;s:22:\"mollie-payment-gateway\";i:19;s:15:\"payfast-gateway\";i:20;s:17:\"currency-switcher\";i:21;s:6:\"sofort\";i:22;s:32:\"donation-upsells-for-woocommerce\";i:23;s:8:\"tributes\";i:24;s:12:\"fee-recovery\";i:25;s:19:\"americloud-payments\";i:26;s:13:\"paytm-gateway\";i:27;s:18:\"gocardless-gateway\";i:28;s:16:\"razorpay-gateway\";i:29;s:17:\"payumoney-gateway\";i:30;s:10:\"convertkit\";i:31;s:6:\"aweber\";i:32;s:17:\"per-form-gateways\";i:33;s:13:\"email-reports\";i:34;s:16:\"manual-donations\";i:35;s:10:\"pro-bundle\";i:36;s:11:\"plus-bundle\";i:37;s:12:\"basic-bundle\";i:38;s:6:\"zapier\";i:39;s:16:\"google-analytics\";i:40;s:16:\"ccavenue-gateway\";i:41;s:16:\"constant-contact\";i:42;s:25:\"braintree-payment-gateway\";i:43;s:8:\"gift-aid\";i:44;s:12:\"iats-gateway\";i:45;s:17:\"2checkout-gateway\";i:46;s:12:\"pdf-receipts\";i:47;s:19:\"recurring-donations\";i:48;s:15:\"paymill-gateway\";i:49;s:18:\"form-field-manager\";i:50;s:18:\"paypal-pro-gateway\";i:51;s:14:\"stripe-gateway\";i:52;s:21:\"authorize-net-gateway\";i:53;s:9:\"mailchimp\";}','no'),(889,'6999fbcf5_eael_updated_at','1652935535','no'),(920,'htmega_pro_vs_free_tabs','','yes'),(921,'htmega_element_tabs','a:64:{s:9:\"accordion\";s:2:\"on\";s:19:\"animatesectiontitle\";s:2:\"on\";s:9:\"addbanner\";s:2:\"on\";s:16:\"specialadsbanner\";s:2:\"on\";s:10:\"blockquote\";s:2:\"on\";s:9:\"brandlogo\";s:2:\"on\";s:13:\"businesshours\";s:2:\"on\";s:6:\"button\";s:2:\"on\";s:12:\"calltoaction\";s:2:\"on\";s:8:\"carousel\";s:2:\"on\";s:9:\"countdown\";s:2:\"on\";s:7:\"counter\";s:2:\"on\";s:11:\"customevent\";s:2:\"on\";s:10:\"dualbutton\";s:2:\"on\";s:8:\"dropcaps\";s:2:\"on\";s:7:\"flipbox\";s:2:\"on\";s:14:\"galleryjustify\";s:2:\"on\";s:9:\"googlemap\";s:2:\"on\";s:15:\"imagecomparison\";s:2:\"on\";s:9:\"imagegrid\";s:2:\"on\";s:14:\"imagemagnifier\";s:2:\"on\";s:11:\"imagemarker\";s:2:\"on\";s:12:\"imagemasonry\";s:2:\"on\";s:10:\"inlinemenu\";s:2:\"on\";s:9:\"instagram\";s:2:\"on\";s:8:\"lightbox\";s:2:\"on\";s:5:\"modal\";s:2:\"on\";s:10:\"newtsicker\";s:2:\"on\";s:6:\"notify\";s:3:\"off\";s:9:\"offcanvas\";s:2:\"on\";s:11:\"panelslider\";s:3:\"off\";s:7:\"popover\";s:3:\"off\";s:12:\"postcarousel\";s:2:\"on\";s:8:\"postgrid\";s:2:\"on\";s:11:\"postgridtab\";s:2:\"on\";s:10:\"postslider\";s:2:\"on\";s:15:\"pricinglistview\";s:3:\"off\";s:12:\"pricingtable\";s:2:\"on\";s:11:\"progressbar\";s:2:\"on\";s:11:\"scrollimage\";s:3:\"off\";s:16:\"scrollnavigation\";s:3:\"off\";s:6:\"search\";s:3:\"off\";s:12:\"sectiontitle\";s:2:\"on\";s:7:\"service\";s:2:\"on\";s:10:\"singlepost\";s:2:\"on\";s:12:\"thumbgallery\";s:3:\"off\";s:11:\"socialshere\";s:3:\"off\";s:8:\"switcher\";s:2:\"on\";s:4:\"tabs\";s:2:\"on\";s:9:\"datatable\";s:3:\"off\";s:10:\"teammember\";s:2:\"on\";s:11:\"testimonial\";s:2:\"on\";s:15:\"testimonialgrid\";s:3:\"off\";s:6:\"toggle\";s:2:\"on\";s:7:\"tooltip\";s:2:\"on\";s:11:\"twitterfeed\";s:3:\"off\";s:13:\"userloginform\";s:3:\"off\";s:16:\"userregisterform\";s:3:\"off\";s:16:\"verticletimeline\";s:3:\"off\";s:11:\"videoplayer\";s:3:\"off\";s:14:\"workingprocess\";s:2:\"on\";s:12:\"errorcontent\";s:3:\"off\";s:17:\"template_selector\";s:3:\"off\";s:7:\"weather\";s:2:\"on\";}','yes'),(922,'htmega_thirdparty_element_tabs','','yes'),(923,'htmega_general_tabs','','yes'),(924,'htmega_advance_element_tabs','','yes'),(925,'_transient_timeout_htrp_htplugins_list_htplugins','1653484717','no'),(926,'_transient_htrp_htplugins_list_htplugins','a:40:{i:0;a:24:{s:4:\"name\";s:71:\"Contact Form 7 Widget For Elementor Page Builder &amp; Gutenberg Blocks\";s:4:\"slug\";s:14:\"ht-contactform\";s:7:\"version\";s:5:\"1.1.2\";s:6:\"author\";s:82:\"<a href=\"https://profiles.wordpress.org/htplugins/#content-plugins\">HT Plugins</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:2;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:2;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:10000;s:10:\"downloaded\";i:73842;s:12:\"last_updated\";s:22:\"2022-02-10 11:23am GMT\";s:5:\"added\";s:10:\"2019-03-03\";s:8:\"homepage\";s:22:\"https://htplugins.com/\";s:17:\"short_description\";s:159:\"Contact Form 7 Widget is a elementor addons for elementor page bulider and gutenberg blocks. It&#039;s Help to you easily drag and drop Contact Form 7 &hellip;\";s:11:\"description\";s:2480:\"<p>Contact Form 7 Widget is a elementor addons for elementor page bulider and gutenberg blocks. It&#8217;s Help to you easily drag and drop Contact Form 7 forms from a drop down list.<br />\n<a href=\"https://wordpress.org/plugins/contact-form-7/\">Required Plugin:  Contact Form 7</a></p>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/ZRTPsGZnJq4?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></span>\n<blockquote><p>\n  Absolute Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Absolute Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>Features:</h3>\n<ul>\n<li>Drag and drop the widget</li>\n<li>Custom Styling Options</li>\n<li>Show Contact form in any place on your website.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://htplugins.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n<h3><a href=\"https://wordpress.org/plugins/extensions-for-cf7/\">Contact Form 7 Extensions</a></h3>\n<p>Are you looking for a plugin to help with your Contact Form 7?</p>\n<p>Extensions For Contact form 7 is the perfect extension for any WordPress site. It will allow you to create a contact form 7 database, conditional fields, and redirection. This extension is free! Check it out today!</p>\n<p>You can now save all of your submissions in one place on your website without having to worry about them going missing or getting lost in the shuffle. With this extension, everything will be organized and easy to find when you need it most.</p>\n<p><strong>Feature List of Extensions For Contact Form 7:</strong><br />\n✔️ Create a contact form 7 database to save CF7 submissions to your WordPress.<br />\n✔️ Contact form 7 conditional fields.<br />\n✔️ Contact form 7 redirection.</p>\n<p>Click here to download <a href=\"https://wordpress.org/plugins/extensions-for-cf7/\">Extensions For Contact form 7</a> today!</p>\n\";s:13:\"download_link\";s:57:\"https://downloads.wordpress.org/plugin/ht-contactform.zip\";s:4:\"tags\";a:5:{s:12:\"contact-form\";s:12:\"contact form\";s:14:\"contact-form-7\";s:14:\"contact form 7\";s:21:\"contact-form-7-widget\";s:21:\"contact-form-7 widget\";s:9:\"elementor\";s:9:\"elementor\";s:16:\"gutenberg-blocks\";s:16:\"gutenberg blocks\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/ht-contactform/assets/icon-128x128.png?rev=2043116\";}}i:1;a:24:{s:4:\"name\";s:10:\"Coupon Zen\";s:4:\"slug\";s:10:\"coupon-zen\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:0;s:10:\"downloaded\";i:188;s:12:\"last_updated\";s:21:\"2021-12-02 9:27am GMT\";s:5:\"added\";s:10:\"2021-11-04\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:107:\"Create an excellent coupon-based affiliate system for your WooCommerce store to make it easier than&hellip;\";s:11:\"description\";s:3519:\"<p>Coupon Zen is a WordPress coupon code generator plugin that allows you to generate custom coupon codes for your website. This plugin is free and easy to use. This plugin will help increase your conversions and generate more revenue with no work on your end!</p>\n<p>Coupons are a simple yet effective way to increase engagement, strengthen customer loyalty, and encourage new visitors to make purchases By using this distinct WordPress coupon plugin on your site, you can easily generate coupons to offer the products available at special/discounted prices and run your online business more efficiently.</p>\n<p>Coupon Zen comes loaded with plenty of modern features at your disposal. The major specialty of this plugin is its blazing fast loading speed since it is a lightweight plugin. It enables you to generate responsive shortcodes for creating coupon codes right away and insert the coupon code directly from the post editor.</p>\n<p>It is important to provide special coupons during remarkable sales occasions such as Black Friday, New Year&#8217;s Eve, Halloween, and so on. With this in mind, we&#8217;ve introduced the ability to show coupons based on events. To produce coupons automatically, an auto coupon tool has been added. Furthermore, there is a coupon sticky function that emphasizes the most notable coupon at the top of any page for enhanced visibility.</p>\n<p>There are also some other aspects that would make this excellent WordPress coupon plugin a valuable addition to any business&#8217; website. One such feature is click-to-copy functionality, as well as 4 styles for the archive page and expiration system which shows when your coupons expire so you can take care of them accordingly! Last but not least, you can customize the text, color of your coupon code as well.</p>\n<h3>Features</h3>\n<ul>\n<li>Fast loading speed.</li>\n<li>Shortcode insertion option from the post editor. </li>\n<li>Coupon Sticky feature.</li>\n<li>Click to copy feature.</li>\n<li>Auto coupon feature.</li>\n<li>Intuitive settings panel.</li>\n<li>Single Coupon Style </li>\n<li>4 Archive Page styles.</li>\n<li>Option to display coupon based on events.</li>\n<li>Expiration system (If you want to show coupon expiration)</li>\n</ul>\n<h3>Available Shortcodes</h3>\n<p><strong>To Show Single Coupon</strong></p>\n<pre>[couponzen id=\"Coupon ID\"]</pre>\n<p><strong>To Show Archive Page</strong></p>\n<pre>[couponzen_page]</pre>\n<p><strong>To Show Event Coupons</strong></p>\n<pre>[couponzen event=\"Event Name\"]</pre>\n<p><strong>The common structure of the shortcode</strong></p>\n<pre>[couponzen_page order=\"DESC, ASC\" orderby=\"ID, title, date, modified, parent, rand\"]</pre>\n<pre>[couponzen event=\"Event Name\" order=\"DESC, ASC\" orderby=\"ID, title, date, modified, parent, rand\"]</pre>\n<p>couponzen_page order – Indicates whether the ‘orderby’ parameter should be in ascending or descending order.</p>\n<ul>\n<li>ASC- Indicates the order from lowest to highest value.</li>\n<li>DESC- Indicates the order from highest to the lowest value.</li>\n</ul>\n<p>orderby: Order the results by various parameters. Those parameters are:</p>\n<ul>\n<li>title: Use this parameter to order results by title.</li>\n<li>ID: Use it to order the results by post ID.</li>\n<li>date: This parameter is to be used to order the results by date.</li>\n<li>modified: Use it if you want to order the results by last modified date.</li>\n<li>parent: Use this parameter to order results by parent ID.</li>\n<li>rand: Use this parameter for random order.</li>\n</ul>\n\";s:13:\"download_link\";s:53:\"https://downloads.wordpress.org/plugin/coupon-zen.zip\";s:4:\"tags\";a:5:{s:9:\"affiliate\";s:9:\"affiliate\";s:6:\"coupon\";s:6:\"coupon\";s:13:\"coupon-plugin\";s:13:\"coupon plugin\";s:5:\"deals\";s:5:\"deals\";s:10:\"wp-coupons\";s:10:\"wp coupons\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/coupon-zen/assets/icon-128x128.png?rev=2624432\";s:2:\"2x\";s:63:\"https://ps.w.org/coupon-zen/assets/icon-256x256.png?rev=2624432\";}}i:2;a:24:{s:4:\"name\";s:50:\"DataCaptia &#8211; Open Graph plugin for WordPress\";s:4:\"slug\";s:11:\"data-captia\";s:7:\"version\";s:5:\"1.0.4\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:5:\"5.4.1\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:0;s:10:\"downloaded\";i:386;s:12:\"last_updated\";s:21:\"2022-02-09 3:47am GMT\";s:5:\"added\";s:10:\"2021-02-23\";s:8:\"homepage\";s:0:\"\";s:17:\"short_description\";s:44:\"Easily enable og information in any website.\";s:11:\"description\";s:3660:\"<p>Sharing your website posts, pages, and products (for an e-commerce site) on social media helps you outreach a broader audience in little to no time. In general, Social requests or “scrapes” the URL shared by a user and fetches the data it displays from meta tags in the &#8220;head&#8221; section of the page. Since most content is shared on social media as a URL, marking up your website with snippets of codes called “Open Graph meta tags” is vital in terms of managing how your content shows up on Social Media.</p>\n<p>DataCaptia is a modern effective tool that gives you excellent and top-notch performance in sharing your WordPress pages, posts, or WooCommerce products in a simple and hassle-free way.  It enables you to choose to insert the “enclosure” and “media: content” tags, such as o.g: URL, o.g: type, o.g: title, etc.</p>\n<p>DataCaptia also comes with various settings at your disposal to add open graph meta tags. You can select certain pages or posts on your WordPress website or even the products (if your site is a WooCommerce site) in order to add the basic and optional metadata. Moreover, there are also the options to choose and add default images for the product, page, or post, which will be helpful if the product/page or post doesn&#8217;t contain an image previously.</p>\n<p>Plugins like DataCaptia is useful and handy for effective Social media marketing as well as search engine optimization. As Social media is one of the major drivers of most of the web’s traffic, you can easily increase the number of site visitors and conduct marketing in an efficient way by deploying a plugin like DataCaptia.</p>\n<h3>The Generated Social Media Open Graph Tags</h3>\n<p>Upon installation and activation of the plugin, it will automatically render the following metadata for posts, pages.</p>\n<p>og: title:  It refers to the title of certain Social Media posts, pages, archives, etc.</p>\n<p>og: description: This open graph tag is similar to the meta description tag in HTML. This tag is used to give a brief description of your content. This open graph tag is essential to make your page/post more appealing and click-worthy.</p>\n<p>og: URL: This is the tag to be used to set the canonical URL for the page a user shares. By setting a certain URL, you define the particular page that all your shares will go to.</p>\n<p>og: image: To make your content stand out, adding an image is crucial. Therefore, by this tag, you make sure that a specific thumbnail image appears when your page/post is shared.</p>\n<p>og: type: By using this tag, you can set the type of the particular article, video, blog or page or WooCommerce product type, etc.</p>\n<h3>The Generated Social Media Open Graph Tags for WooCommerce</h3>\n<p>Upon installation and activation of the plugin, it will automatically render the following metadata for WooCommerce Products:</p>\n<p>product:brand:  The product: brand tag is used to set the brand of the particular WooCommerce product.<br />\nproduct: availability:  Using this tag, you can declare if a certain product is available or not.<br />\nproduct: condition: By this tag, you can indicate in which state the product is in, e.g., whether it’s old or new.<br />\nproduct: price: amount: This open graph tag allows you to set the product price.<br />\nproduct: price: currency:  This is the tag by which you can set the currency.<br />\nproduct: price: retailer_item_id: Set the unique retailer item id by this tag.<br />\nproduct: price: item_group_id: It refers to the group of particular products.</p>\n<h3>KEY FEATURES</h3>\n<ul>\n<li>Enable open graph for post, pages and woocommerce product.</li>\n</ul>\n\";s:13:\"download_link\";s:54:\"https://downloads.wordpress.org/plugin/data-captia.zip\";s:4:\"tags\";a:5:{s:10:\"datacaptia\";s:10:\"datacaptia\";s:5:\"graph\";s:5:\"graph\";s:7:\"ogtitle\";s:8:\"og:title\";s:10:\"open-graph\";s:10:\"open graph\";s:12:\"social-share\";s:12:\"social share\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:64:\"https://ps.w.org/data-captia/assets/icon-128x128.png?rev=2510426\";s:2:\"2x\";s:64:\"https://ps.w.org/data-captia/assets/icon-256x256.png?rev=2510426\";}}i:3;a:24:{s:4:\"name\";s:36:\"Docus &#8211; YouTube Video Playlist\";s:4:\"slug\";s:5:\"docus\";s:7:\"version\";s:5:\"1.0.3\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:5:\"5.4.1\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:0;s:10:\"downloaded\";i:386;s:12:\"last_updated\";s:21:\"2022-02-09 4:04am GMT\";s:5:\"added\";s:10:\"2021-02-02\";s:8:\"homepage\";s:0:\"\";s:17:\"short_description\";s:58:\"Embedding a YouTube playlist onto any page of your website\";s:11:\"description\";s:1356:\"<p>Embedding a YouTube playlist into your website plays a vital role to curate your content into several categories and make your web content more engaging and popular by keeping the visitors on your website for a longer period. Using a WordPress plugin like Docus enables you to showcase your YouTube Video playlist efficiently without a hitch.</p>\n<p>Docus provides a simple installation and smooth embedding process. Hence, it helps you place your desired YouTube playlist in little to no time.</p>\n<p>It has several customization features to allow you to add a dynamic YouTube player with a playlist through the YouTube Data API v3 key. You are required to place the YouTube V3 Data API key, enter Playlist ID or set the limit for the number of videos to be displayed on the web page.</p>\n<p>In its free version, you can deploy 01 Layout style to embed a YouTube playlist into your WordPress web page. The premium version will give you added advantages as it offers 03 unique layout styles to choose from.</p>\n<p>SHORTCODE<br />\nDocus has an easy-to-use and handy Shortcode([docusplaylist]) that allows you to show your YouTube Video playlist in any post or page.</p>\n<p>KEY FEATURES:<br />\n* Easy to embed channel videos to WordPress post/page<br />\n* Video gallery responsive<br />\n* Player with a popup with thumbnails<br />\n* Player responsive</p>\n\";s:13:\"download_link\";s:48:\"https://downloads.wordpress.org/plugin/docus.zip\";s:4:\"tags\";a:5:{s:5:\"docus\";s:5:\"docus\";s:7:\"youtube\";s:7:\"youtube\";s:15:\"youtube-gallery\";s:15:\"youtube gallery\";s:16:\"youtube-playlist\";s:16:\"youtube playlist\";s:13:\"youtube-video\";s:13:\"youtube video\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:58:\"https://ps.w.org/docus/assets/icon-128x128.jpg?rev=2467082\";}}i:4;a:24:{s:4:\"name\";s:60:\"Ever Compare &#8211; Products Compare Plugin for WooCommerce\";s:4:\"slug\";s:12:\"ever-compare\";s:7:\"version\";s:5:\"1.1.9\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com/\">HasTheme</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:1;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:1;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:800;s:10:\"downloaded\";i:7427;s:12:\"last_updated\";s:21:\"2022-04-27 7:33am GMT\";s:5:\"added\";s:10:\"2021-01-26\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:93:\"Ever Compare is a WordPress plugin for product compare, is a powerful tool that helps&hellip;\";s:11:\"description\";s:2998:\"<p>In your online shop, helping customers make prompt and easy buying decisions is vital to obtain customer satisfaction. The idea of product comparison in e-commerce sites has become widespread since the product comparison feature is helpful for the buyers while comparing between different items with various attributes, such as quality, price, weight, color, size, etc., and making a final buying decision.</p>\n<p>If you want to integrate outstanding and modern product comparing features on your WooCommerce site, the Ever Compare Plugin will be a powerful and handy tool to get started.</p>\n<p>All the essential settings of a standard Product Comparison Plugin are available here. You can choose a Compare Page for the Compare Table and also choose the fields to be shown in the table. Besides, there are various button settings, such as Compare Button Text, Compare Added Button Text, etc. Furthermore, there are options to show the compare button both in the product list and single product page and enable or disable Open Popup.</p>\n<p>Finally, this impressive product comparison plugin is fully user-friendly, well-documented, and entirely responsive. Try Ever Compare Plugin to compare between different products on your web page like a pro!</p>\n<h3>Other Projects:</h3>\n<p>We have a lot of plugins and extensions that might interest you. Try out other projects by following this link:</p>\n<h3><a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor- WooCommerce Page Builder Elementor Addons</a></h3>\n<p>WooLentor helps to build custom products, shop, archive pages easily. Pro version has the option to build custom checkout, cart and my account pages.</p>\n<h3><a href=\"https://wordpress.org/plugins/wishsuite/\">WishSuite – Wishlist for WooCommerce</a></h3>\n<p>WishSuite is an ultimate and exclusive WooCommerce plugin that allows you to create stunning Wishlists for your WooCommerce store.</p>\n<h3><a href=\"https://wordpress.org/plugins/quickswish/\">QuickSwish – WooCommerce Product Quick View</a></h3>\n<p>With Quick Swish, you can offer your visitors a quick look at your products without having to leave your product page.</p>\n<h3><a href=\"https://wordpress.org/plugins/just-tables/\">JustTables – WooCommerce Product Table</a></h3>\n<p>This WooCommerce plugin displays all listings in a table (you can search and sort products based on rating, category, price ratings with just two clicks).</p>\n<h3><a href=\"https://wordpress.org/plugins/swatchly/\">Swatchly – Variation Swatches for WooCommerce Products</a></h3>\n<p>WooCommerce product variation’s select options can appear confusing. This plugin turns these selections into more user-friendly swatches—button swatch, color swatch and image swatch.</p>\n<h3><a href=\"https://wordpress.org/plugins/whols/\">Whols – WooCommerce Wholesale Prices</a></h3>\n<p>Whols is a plugin for WordPress that provides store owners with the ability to set wholesale discounts on products through their WooCommerce website.</p>\n\";s:13:\"download_link\";s:55:\"https://downloads.wordpress.org/plugin/ever-compare.zip\";s:4:\"tags\";a:5:{s:14:\"compare-button\";s:14:\"Compare Button\";s:16:\"compare-products\";s:16:\"compare products\";s:15:\"product-compare\";s:15:\"product compare\";s:18:\"product-comparison\";s:18:\"product comparison\";s:19:\"woocommerce-compare\";s:19:\"woocommerce compare\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/ever-compare/assets/icon-128x128.jpg?rev=2462815\";}}i:5;a:24:{s:4:\"name\";s:79:\"Extensions For CF7 (Contact form 7 Database, Conditional Field and Redirection)\";s:4:\"slug\";s:18:\"extensions-for-cf7\";s:7:\"version\";s:5:\"2.0.1\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:5:\"5.4.1\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:1;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:1;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:1;s:15:\"active_installs\";i:2000;s:10:\"downloaded\";i:14485;s:12:\"last_updated\";s:22:\"2022-05-10 11:33am GMT\";s:5:\"added\";s:10:\"2021-05-19\";s:8:\"homepage\";s:0:\"\";s:17:\"short_description\";s:96:\"Easily save contact form data, apply conditional logic in the fields and redirect to any&hellip;\";s:11:\"description\";s:7346:\"<p><a href=\"https://hasthemes.com/plugins/cf7-extensions/?utm_source=wprepo&amp;utm_medium=repodes&amp;utm_campaign=freeplugin\" rel=\"nofollow ugc\">The Extensions for CF7</a> is an excellent WordPress plugin that extends the features and functionalities of the Contact Form 7 plugin to make it more convenient and user-friendly. This all-inclusive WordPress plugin offers a couple of remarkable features using which you can organize your contact page efficiently while also making it easier for users to get in touch with you. The key features include saving submissions made through Contact Form 7 in your database, redirecting users to any page you choose once their message has been sent successfully, enabling conditional logic so that you can configure fields on the form as either visible or hidden based on input from visitors, and integrating with Mailchimp easily so you can generate leads every time a user submits a form.</p>\n<p><a href=\"https://hasthemes.com/?utm_source=wprepo&amp;utm_medium=repodes&amp;utm_campaign=freeplugin\" rel=\"nofollow ugc\">Our Website</a> | <a href=\"https://hasthemes.com/plugins/cf7-extensions/?utm_source=wprepo&amp;utm_medium=repodes&amp;utm_campaign=freeplugin\" rel=\"nofollow ugc\">Purchase Pro</a></p>\n<h3>Free VS Pro CF7 Extension</h3>\n<ol>\n<li>Contact Form 7 Database, Save contact form submission data and handle it through the dashboard.</li>\n<li>Contact Form 7 Conditional Field, Easily apply conditions to any field to show or hide.</li>\n<li>Contact Form 7 Redirection, redirect to any page after form submission.</li>\n<li>Contact Form 7 Mailchimp, Integrate Contact Form 7 with Mailchimp effortlessly.</li>\n</ol>\n<h4><a href=\"https://hasthemes.com/plugins/cf7-extensions/?utm_source=wprepo&amp;utm_medium=repodes&amp;utm_campaign=freeplugin\" rel=\"nofollow ugc\">Pro Version</a></h4>\n<ol>\n<li>Trigger a notice, if the form is already submitted. </li>\n<li>Repeater Field. </li>\n<li>Show validation and success messages with a nice popup. </li>\n<li>Telephone input field with country code and flag. </li>\n<li>GDPR Field to take permission to save the submitted data. </li>\n<li>Drag &amp; Drop File Upload</li>\n</ol>\n<h3>Why You Should Choose Extensions for CF7 Plugin</h3>\n<p>The contact form is undeniably one of the vital elements for any website since it lets visitors fill out the web-based form and submit it to send a message to the site owner, therefore helping site owners boost interactions with visitors. As the site owner, you get the messages instantly and securely on your email without even revealing your email. Thus, the chance of receiving spam emails gets reduced as your email address isn&#8217;t disclosed to spambots, and so they cannot scrap your email address from the website.<br />\nIf you are creating contact forms through Contact Form 7 plugin and looking for extensive features to make your contact form more organized, you have come to the right place. There are certain functionalities, which are not available by default in the Contact Form 7 plugin. That is where the Extensions for CF7 plugin comes into play.</p>\n<p>Firstly, this versatile contact form extension plugin captures form submissions through contact form 7, saves them to your WordPress database, and presents them right before your eyes! You can also import and export data to a CSV file. You can search the contact form submissions by the users based on time and date range. Besides, you can delete the submission data if you want.<br />\nSecondly, this fantastic CF7 extension plugin allows conditional logic to be added in the contact form so that you can create complex conditions or simply show or hide fields based on user selections. It would work very well as an ideal contact form 7 conditional fields plugin.</p>\n<p>Lastly, you will get the feature of redirection for Contact Form 7. This amazing Contact Form 7 extension plugin redirects users to any web page after successful submission of the contact form. You can choose where visitors go once they finish submitting their messages filling out all the required fields. Users can also be redirected to a new tab. Moreover, the plugin allows you to add specific JavaScript actions.</p>\n<h3>KEY FEATURES</h3>\n<p>Once you install the plugin, you will have three options listed under Plugin Area named CF7 DB, CF7 Conditional, and CF7 Redirections. Let&#8217;s take a look at what each of these options has to offer!</p>\n<h3>Contact form 7 Database</h3>\n<ul>\n<li>Save contact form submission data and handle it through the dashboard.</li>\n<li>Export and import CSV files easily.</li>\n<li>Search the contact form submissions time and date wise.</li>\n<li>Delete Submission Data.</li>\n</ul>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/RFshvIY_Xps?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></span>\n<h3>Contact form 7 Conditional Field</h3>\n<ul>\n<li>Easily apply conditions to any field to show or hide.</li>\n<li>Add multiple AND conditions.</li>\n<li>Add multiple OR conditions.</li>\n</ul>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/636rAmN-ZHY?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></span>\n<h3>Contact form 7 Redirection</h3>\n<ul>\n<li>Easily redirect to any page after form submission.</li>\n<li>Redirect the page in a new tab.</li>\n<li>Add specific JavaScript action.</li>\n</ul>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/tN5_r1HrJrU?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></span>\n<p>Extension for CF7 is an extension for <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a> WordPress plugin.</p>\n<h3>Contact Form 7 to Mailchimp</h3>\n<p>Do you want to connect your contact form 7 with Mailchimp?</p>\n<p>Our plugin has the option to integrate Contact Form 7 with Mailchimp easily. When anyone fills a contact form on your website, our plugin will add the submission to the MailChimp list. Thus, you can connect each record with a separate Mailchimp list. Connecting contact form 7 with MailChimp is an excellent feature to automate the email marketing process.</p>\n<h3>To Wrap up</h3>\n<p>The Extensions for CF7 is a multi-faceted and modern plugin that enriches the features and functionalities of Contact Form 7, making it easier to organize your contact form usages. By installing this contact form 7 extension plugin, you can manage your contact form pages and make them more user-friendly!</p>\n\";s:13:\"download_link\";s:61:\"https://downloads.wordpress.org/plugin/extensions-for-cf7.zip\";s:4:\"tags\";a:5:{s:15:\"cf7-redirection\";s:15:\"cf7 redirection\";s:14:\"contact-form-7\";s:14:\"contact form 7\";s:15:\"contact-form-db\";s:15:\"contact form db\";s:10:\"extensions\";s:10:\"extensions\";s:11:\"redirection\";s:11:\"redirection\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:71:\"https://ps.w.org/extensions-for-cf7/assets/icon-128x128.jpg?rev=2534041\";s:2:\"2x\";s:71:\"https://ps.w.org/extensions-for-cf7/assets/icon-256x256.jpg?rev=2534041\";}}i:6;a:24:{s:4:\"name\";s:20:\"Faster YouTube Embed\";s:4:\"slug\";s:20:\"faster-youtube-embed\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:20;s:10:\"downloaded\";i:299;s:12:\"last_updated\";s:21:\"2021-12-12 5:32am GMT\";s:5:\"added\";s:10:\"2021-06-22\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:94:\"Faster YouTube Embed enables you to insert YouTube videos to any page and post quickly&hellip;\";s:11:\"description\";s:2425:\"<p>Faster YouTube Embed is an easy-to-use WordPress plugin to insert YouTube videos to your WordPress pages and posts. It offers you a fully responsive and user friendly design. After installing this convenient YouTube plugin for your website, you will have a custom YouTube widget that can be used to embed single video without any hassle as it provides a fast and easy method to get the job done.</p>\n<p>This plugin is compatible with almost all the popular page builders on WordPress. You can take advantage of this widget in both Gutenberg and Elementor to embed your YouTube videos. Furthermore, you can use a shortcode for any page builder! The best part? Videos will load at blazing fast speed no matter what size screen it is being viewed from- so you don&#8217;t have any unwanted delays!</p>\n<h3>Features</h3>\n<p>Faster YouTube embed is a powerful solution for embedding YouTube videos into your WordPress site that is exceptionally quick, straightforward, and easy to use. Some of its highlights are mentioned below:</p>\n<ul>\n<li>Insert YouTube video URL through a Gutenberg block, Elementor addon, widget or shortcode.</li>\n<li>Fully Responsive YouTube videos on all devices. The plugin has an easy-to-use shortcode which is [htyoutube]url[/htyoutube] and it allows you to show your YouTube Video playlist in any posts or pages. Replace the url here by the URL of your desired YouTube video.</li>\n<li>Speed up YouTube video load time on your site by using this plugin.</li>\n</ul>\n<p>So, worried about YouTube videos slowing down your site? Switch to the modern and user-friendly “Faster YouTube Embed” plugin and get your website up and running with faster YouTube video load speed.</p>\n<p>The plugin also allows you to set the resolution for the thumbnail to be shown up.  You can set various screen resolutions for thumbnails to appear.<br />\n* 01. Lowest Quality Dimensions: 120px × 90px<br />\n* 02. Medium Quality Dimensions: 320px × 180px<br />\n* 03. High Quality Dimensions: 480px × 360px<br />\n* 04. Standard Quality Dimensions: 640px × 480px<br />\n* 05. YouTube Recommended Thumbnail Dimension for better SEO: 1280px × 720px</p>\n<p>You can select espasic video regulation</p>\n<h3>Shortcode</h3>\n<pre>[htyoutube controls=\"1\" start =\"10\" end=\"40\" thumbnailresolution=\"lowest OR medium OR high OR standard OR recommended\" thumbnail=\"https://example.com/image.jpg\"]YouTube Video ID[/htyoutube]</pre>\n\";s:13:\"download_link\";s:63:\"https://downloads.wordpress.org/plugin/faster-youtube-embed.zip\";s:4:\"tags\";a:5:{s:12:\"embed-videos\";s:12:\"embed videos\";s:5:\"video\";s:5:\"video\";s:11:\"video-embed\";s:11:\"video embed\";s:13:\"youtube-embed\";s:13:\"YouTube embed\";s:13:\"youtube-video\";s:13:\"youtube video\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:73:\"https://ps.w.org/faster-youtube-embed/assets/icon-128x128.png?rev=2551942\";s:2:\"2x\";s:73:\"https://ps.w.org/faster-youtube-embed/assets/icon-256x256.png?rev=2551942\";}}i:7;a:24:{s:4:\"name\";s:37:\"Free WooCommerce Theme 99fy Extension\";s:4:\"slug\";s:9:\"99fy-core\";s:7:\"version\";s:5:\"1.2.4\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:1;s:15:\"active_installs\";i:800;s:10:\"downloaded\";i:15138;s:12:\"last_updated\";s:21:\"2022-04-06 4:41am GMT\";s:5:\"added\";s:10:\"2019-11-02\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:54:\"Elementor Addon Pack For 99fy - Free WooCommerce Theme\";s:11:\"description\";s:3481:\"<p>99Fy Core is a plugin for 99fy &#8211; Free WooCommerce Theme. This plugin requires the <a href=\"https://wordpress.org/themes/99fy/\">99fy</a> theme to be installed.</p>\n<h3>What is 99fy?</h3>\n<p>99fy is a Free WooCommerce WordPress Theme, it is responsive and fast loading theme. 99 Home pages are included in this theme. 99fy using <a href=\"https://wordpress.org/plugins/elementor/\">Elementor Page Builder</a> to create pages easily,<br />\nand supports popular WooCommerce Addon &#8211; WooLentor. <a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor</a> helps to create custom templates for shop and product pages. All of the popular niches for WooCommerce Stores are included in this theme. More niches are added regularly.</p>\n<p><a href=\"https://demo.hasthemes.com/99fy-preview/index.html\" rel=\"nofollow ugc\">Live Demo</a><br />\n<a href=\"https://hasthemes.com/woocommerce-themes/99fy-pro/\" rel=\"nofollow ugc\">Purchase Pro Version</a></p>\n<h3>Niches are:</h3>\n<p><a href=\"https://99fy.thethemedemo.com/animal/\" rel=\"nofollow ugc\">Animals &amp; Pets (4)</a><br />\n<a href=\"https://99fy.thethemedemo.com/book/\" rel=\"nofollow ugc\">Books &amp; Library (3)</a><br />\n<a href=\"https://99fy.thethemedemo.com/cosmetic/\" rel=\"nofollow ugc\">Cosmetics (2)</a><br />\n<a href=\"https://99fy.thethemedemo.com/carmotors/\" rel=\"nofollow ugc\">Cars &amp; Motors (2)</a><br />\n<a href=\"https://99fy.thethemedemo.com/electronics/\" rel=\"nofollow ugc\">Electronics (10)</a><br />\n<a href=\"https://99fy.thethemedemo.com/fashion/\" rel=\"nofollow ugc\">Fashion (26)</a><br />\n<a href=\"https://99fy.thethemedemo.com/furniture/\" rel=\"nofollow ugc\">Furniture (13)</a><br />\n<a href=\"https://99fy.thethemedemo.com/fruits/\" rel=\"nofollow ugc\">Fruits (2)</a><br />\n<a href=\"https://99fy.thethemedemo.com/food/\" rel=\"nofollow ugc\">Food (1)</a><br />\n<a href=\"https://99fy.thethemedemo.com/flowers/\" rel=\"nofollow ugc\">Flower (3)</a><br />\n<a href=\"https://99fy.thethemedemo.com/handmade/\" rel=\"nofollow ugc\">Handmade (2)</a><br />\n<a href=\"https://99fy.thethemedemo.com/healthbeauty/\" rel=\"nofollow ugc\">Health &amp; Beauty (1)</a><br />\n<a href=\"https://99fy.thethemedemo.com/minimal/\" rel=\"nofollow ugc\">Minimal Stores (5)</a><br />\n<a href=\"https://99fy.thethemedemo.com/jewelry/\" rel=\"nofollow ugc\">Jewelry (4)</a><br />\n<a href=\"https://99fy.thethemedemo.com/kitchen/\" rel=\"nofollow ugc\">Kitchen (4)</a><br />\n<a href=\"https://99fy.thethemedemo.com/kids/\" rel=\"nofollow ugc\">Kids Store (1)</a><br />\n<a href=\"https://99fy.thethemedemo.com/matcha/\" rel=\"nofollow ugc\">Matcha Store (2)</a><br />\n<a href=\"https://99fy.thethemedemo.com/perfume/\" rel=\"nofollow ugc\">Perfume (1)</a><br />\n<a href=\"https://99fy.thethemedemo.com/maternity/\" rel=\"nofollow ugc\">Maternity (2)</a><br />\n<a href=\"https://99fy.thethemedemo.com/plantsnursery/\" rel=\"nofollow ugc\">Plant &amp; Nursery (1)</a><br />\n<a href=\"https://99fy.thethemedemo.com/sports/\" rel=\"nofollow ugc\">Sports (3)</a><br />\n<a href=\"https://99fy.thethemedemo.com/shapewear/\" rel=\"nofollow ugc\">Shapewear (1)</a><br />\n<a href=\"https://99fy.thethemedemo.com/toolsequipment/\" rel=\"nofollow ugc\">Tools &amp; Equipment (2)</a><br />\n<a href=\"https://99fy.thethemedemo.com/watch/\" rel=\"nofollow ugc\">Watch (4)</a></p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugins?<br />\nNeeds assistance to use this plugins?<br />\nFeel free to <a href=\"https://htplugins.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:52:\"https://downloads.wordpress.org/plugin/99fy-core.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:15:\"elementor-addon\";s:15:\"elementor addon\";s:22:\"elementor-page-builder\";s:22:\"elementor page builder\";s:14:\"one-click-demo\";s:14:\"One Click Demo\";s:11:\"woocommerce\";s:11:\"woocommerce\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/99fy-core/assets/icon-128x128.jpg?rev=2219247\";}}i:8;a:24:{s:4:\"name\";s:42:\"HashBar &#8211; WordPress Notification Bar\";s:4:\"slug\";s:27:\"hashbar-wp-notification-bar\";s:7:\"version\";s:5:\"1.3.3\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com\">HasThemes</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/devitemsllc/\";s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:86;s:7:\"ratings\";a:5:{i:5;i:11;i:4;i:1;i:3;i:1;i:2;i:1;i:1;i:1;}s:11:\"num_ratings\";i:15;s:15:\"support_threads\";i:5;s:24:\"support_threads_resolved\";i:3;s:15:\"active_installs\";i:10000;s:10:\"downloaded\";i:154364;s:12:\"last_updated\";s:21:\"2022-04-25 9:18am GMT\";s:5:\"added\";s:10:\"2018-01-08\";s:8:\"homepage\";s:31:\"http://demo.wphash.com/hashbar/\";s:17:\"short_description\";s:109:\"HashBar is a WordPress Notification Bar plugin which allows you to create unlimited notification bars&hellip;\";s:11:\"description\";s:6259:\"<p><a href=\"https://hasthemes.com/plugins/wordpress-notification-bar-plugin/\" rel=\"nofollow ugc\">HashBar</a> is a handy WordPress Notification Bar Plugin that will take your WordPress site to the next level. You can set up as many notification bars as you want and customize their content to suit your needs. For example, do you need to add an email subscription form? Simply enter in your newsletter title and signup URL, then let it go! With HashBar&#8217;s eye-catching color schemes and stunning images (you can add new backgrounds at any time by using the simple WP editor), there&#8217;s no way of not being noticed! So spread the word about what you have to offer without having to make much effort with this one-of-a-kind plugin for WordPress sites.</p>\n<p>With HashBar, you can create unlimited notification bars to notify your customers. <strong>Sometimes this increases up to 500% of subscribers or conversion!</strong> In addition, you get to add an email subscription form, offer text, and buttons about any promotions that are going on. These notifications are great for building a solid subscriber list, driving website traffic, and boosting social media activity by sharing functions built right in the bar itself!</p>\n<p>HashBar is an easy-to-install notification plugin for WordPress, allowing you to easily create WordPress notification bars that can be used in any resolution (Desktop/Tablet/Mobile). HashBar – WordPress Notification Bar plugin comes with the option to show all of your promotion buttons (like credit offers and giveaways) and add a form for email subscriptions which has been proven %100 effective!</p>\n<p><a href=\"https://demo.wphash.com/hashbar/\" rel=\"nofollow ugc\">Live Demo</a> | <a href=\"https://hasthemes.com/0lx0\" rel=\"nofollow ugc\">Purchase Pro</a> | <a href=\"https://hasthemes.com/contact-us\" rel=\"nofollow ugc\">Support</a></p>\n<h3>Video Documentation:</h3>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/iwl8eTq0Crc?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></span></p>\n<p><strong>#1: Main Features:</strong></p>\n<ol>\n<li>Gutenberg support</li>\n<li>Elementor Page builder support</li>\n<li>WPBakery Page builder support</li>\n<li>King Composer Page builder support</li>\n<li>Target where to show the notifications (See all targeting options below at #2)</li>\n<li>Custom positioning (Top, Bottom, Left Wall, Right Wall, Promo Banner Top, Promo Banner Bottom)</li>\n<li>Option to load the notification as minimized</li>\n<li>Show / Hide notification based on scroll position</li>\n<li>Show / Hide the close button</li>\n<li>Option to add close button text</li>\n<li>Option to add open button text</li>\n<li>Option to show/hide notification for Desktop Device</li>\n<li>Option to show/hide notification for Mobile Device</li>\n<li>Enable/Disable analytics for the notifications (See all analytics options below at #3)</li>\n<li>Don&#8217;t show notification after close (New feature)</li>\n<li>Keep Closed. After manually closing the notification bar once, it will be kept closed from all the pages. (New feature)</li>\n<li>Set how many times the notification should be shown</li>\n<li>Shortcode generator for classic editor</li>\n<li>Promo Banner Gutenberg Block (New feature)</li>\n<li>Promo Banner Image Gutenberg Block (New feature)</li>\n<li>Customize mobile device breakpoint</li>\n<li>Show countdown into the notification bar</li>\n<li>Countdown feature with lots of customization options</li>\n<li>Countdown block for the gutenberg editor</li>\n</ol>\n<p><strong>#2: Targeting Options:</strong></p>\n<ol>\n<li>Option to set notification for the &#8220;Entire Site&#8221;</li>\n<li>Option to set notification for only the &#8220;Homepage&#8221;</li>\n<li>Option to set notification for specific &#8220;Posts&#8221;, &#8220;Pages&#8221; or &#8220;WooCommerce Products&#8221;</li>\n<li>Option to set notification for &#8220;All products&#8221; of a certain WooCommerce Product category(s) (Pro)</li>\n<li>Option to set notification by for some &#8220;Page/Post/Custom Posts&#8221; by using their ID</li>\n<li>Option to set notification based on certain URL visits (URL parameter)</li>\n<li>Option to set notification for &#8220;All Pages&#8221;</li>\n<li>Option to set notification for &#8220;All Posts&#8221;</li>\n<li>Option to set notification for &#8220;All Products&#8221; &amp;</li>\n<li>Much more</li>\n</ol>\n<p><strong>#3: Analytics Options (New Features):</strong></p>\n<ol>\n<li>Total Clicks</li>\n<li>Total Views</li>\n<li>Click Through Rate (CTR)</li>\n<li>Count only 1 record from each IP for the analytics</li>\n<li>Record analytics from (All Users / Guest Users / Registered Users)</li>\n<li>Track the analytics for each notification bar (Pro)</li>\n</ol>\n<p><strong>#4: Design Customization Options:</strong></p>\n<ol>\n<li>Content Background color</li>\n<li>Content Background Image</li>\n<li>Content Text Color</li>\n<li>Background Opacity</li>\n<li>Close Button BG Color</li>\n<li>Close Button Color</li>\n<li>Close Button Hover Color</li>\n<li>Close Button Hover BG Color</li>\n<li>Open Button Bg Color</li>\n<li>Open Button Color</li>\n<li>Open Button Hover Color</li>\n<li>Open Button Hover Bg Color</li>\n<li>Notification bar margin and padding</li>\n</ol>\n<p><strong>Other Pro Features:</strong></p>\n<ol>\n<li>Exclude certain page/post/custom post for being the notification bar shown</li>\n<li>Support for Sticky/Transparent header</li>\n<li>Schedule notification. The notification will automatically appear on your chosen date/time</li>\n<li>Schedule notification. The notification will automatically disappear after your chosen date/time</li>\n</ol>\n<p>Wanna see the pro version? <a href=\"https://hasthemes.com/0lx0\" rel=\"nofollow ugc\">Check it out now!</a></p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:70:\"https://downloads.wordpress.org/plugin/hashbar-wp-notification-bar.zip\";s:4:\"tags\";a:5:{s:12:\"notification\";s:12:\"notification\";s:16:\"notification-bar\";s:16:\"notification bar\";s:9:\"offer-bar\";s:9:\"offer bar\";s:13:\"promotion-bar\";s:13:\"promotion bar\";s:26:\"wordpress-notification-bar\";s:26:\"wordpress notification bar\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/hashbar-wp-notification-bar/assets/icon-128x128.png?rev=1801131\";}}i:9;a:24:{s:4:\"name\";s:43:\"HT Blocks &#8211; Absolute Gutenberg Blocks\";s:4:\"slug\";s:9:\"ht-blocks\";s:7:\"version\";s:5:\"1.0.0\";s:6:\"author\";s:47:\"<a href=\"https://htplugins.com/\">HT Plugins</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/devitemsllc/\";s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:6:\"5.1.13\";s:12:\"requires_php\";s:5:\"5.2.4\";s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:1;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:1;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:40;s:10:\"downloaded\";i:1131;s:12:\"last_updated\";s:21:\"2019-04-29 8:20am GMT\";s:5:\"added\";s:10:\"2018-09-24\";s:8:\"homepage\";s:30:\"https:demo.wphash.com/htblocks\";s:17:\"short_description\";s:144:\"HT Blocks is a Gutenberg Blocks plugin which will provide you a collection of beautiful, customizable Gutenberg blocks for the new block editor.\";s:11:\"description\";s:1425:\"<p>HT Blocks is a <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a> Blocks plugin which will provide you a collection of beautiful, customizable Gutenberg blocks for the new block editor.</p>\n<p>You will need Gutenberg installed for this plugin to work.</p>\n<h3>HT Blocks currently includes the following blocks:</h3>\n<ul>\n<li>Accordion | <a href=\"http://demo.wphash.com/htblocks/accordions/\" rel=\"nofollow ugc\">Block Demo</a></li>\n<li>Progress Bar (3 Style) | <a href=\"http://demo.wphash.com/htblocks/progress-brs/\" rel=\"nofollow ugc\">Block Demo</a></li>\n<li>Countdowns (7 Style) | <a href=\"http://demo.wphash.com/htblocks/countdowns/\" rel=\"nofollow ugc\">Block Demo</a></li>\n<li>Pricing Table (7 Style) | <a href=\"http://demo.wphash.com/htblocks/pricing-table/\" rel=\"nofollow ugc\">Block Demo</a></li>\n<li>Team Member(6 Style) | <a href=\"http://demo.wphash.com/htblocks/team-member/\" rel=\"nofollow ugc\">Block Demo</a></li>\n<li>Testimonial (3 Style) | <a href=\"http://demo.wphash.com/htblocks/testimonial/\" rel=\"nofollow ugc\">Block Demo</a></li>\n</ul>\n<p>We plan to add more in the future.</p>\n<p>Each blocks are customizable:<br />\nAll of the blocks are customizable with lots of options.</p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://htplugins.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:52:\"https://downloads.wordpress.org/plugin/ht-blocks.zip\";s:4:\"tags\";a:5:{s:25:\"absolute-gutenberg-blocks\";s:25:\"absolute gutenberg blocks\";s:20:\"blocks-for-gutenberg\";s:20:\"blocks for gutenberg\";s:12:\"guten-blocks\";s:12:\"guten blocks\";s:9:\"gutenberg\";s:9:\"gutenberg\";s:16:\"gutenberg-blocks\";s:16:\"gutenberg blocks\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/ht-blocks/assets/icon-128x128.png?rev=1945854\";}}i:10;a:24:{s:4:\"name\";s:56:\"HT Builder &#8211; WordPress Theme Builder for Elementor\";s:4:\"slug\";s:10:\"ht-builder\";s:7:\"version\";s:5:\"1.2.5\";s:6:\"author\";s:45:\"<a href=\"http://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"5.4\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:50;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:1;i:3;i:0;i:2;i:0;i:1;i:1;}s:11:\"num_ratings\";i:2;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:1;s:15:\"active_installs\";i:600;s:10:\"downloaded\";i:11351;s:12:\"last_updated\";s:21:\"2022-02-09 4:00am GMT\";s:5:\"added\";s:10:\"2019-07-10\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:94:\"HT Builder is a drag &amp; drop theme builder plugin for Elementor Page Builder. Theme&hellip;\";s:11:\"description\";s:5176:\"<p>HT Builder is a drag &amp; drop theme builder plugin for Elementor Page Builder. Theme Builder is included in this plugin to build custom blog page, custom blog details page, search page, archive page, coming soon page, 404 page and custom template for header/footer.</p>\n<p>20 Element Addons, awesome styling options. You can easily build your blog page, blog details page, search page, 404 page, unlimited header, unlimited footer layout from the elementor page builder.</p>\n<ul>\n<li><a href=\"http://demo.wphash.com/2/ht-builder/\" rel=\"nofollow ugc\">Demo</a></li>\n<li><a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Support!</a></li>\n</ul>\n<h3>Features:</h3>\n<ul>\n<li>14 Elements</li>\n<li>Blog Page Builder</li>\n<li>Single Blog Page Builder</li>\n<li>Header Builder</li>\n<li>Footer Builder</li>\n<li>Online Template Importer</li>\n</ul>\n<h3>Pro Features:</h3>\n<ul>\n<li>20 Elements</li>\n<li>Blog Search Page Builder</li>\n<li>404 Error Page Builder</li>\n<li>Coming soon Page Builder</li>\n<li>Blog Archive Category Wise Individual layout</li>\n<li>Blog Archive Tag Wise Individual layout</li>\n<li>Online Template Importer</li>\n</ul>\n<h3>Absolute Addons for Elementor Page Builder</h3>\n<blockquote>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Absolute Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>WooLentor – WooCommerce Elementor Addons + Builder</h3>\n<blockquote>\n<p>Don&#8217;t forgete to check our WooCommerce Page Builder for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor – WooCommerce Elementor Addons + Builder</a><br />\n  Includes 42 Product Layout Options &amp; 41 Elementor Addons.</p>\n</blockquote>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n<h3>Our Other Plugins</h3>\n<p><strong><a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor</a></strong> – Versatile Elementor WooCommerce Addon with 74 Elementor Elements, 15 Custom Product Templates, 10 Custom Shop Page Templates and many more!</p>\n<p><strong><a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega</a></strong> – Absolute addon for Elementor that includes 80+ elements &amp; 360 Blocks with unlimited variations.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/wc-multi-currency/\">Multi Currency Pro for WooCommerce</a></strong> – Prominent currency switcher plugin letting you set unlimited currencies, various payment methods, thus skyrocketing your sales!</p>\n<p><strong><a href=\"https://wordpress.org/plugins/just-tables/\">JustTables</a></strong> – WooCommerce Product Table: Showcase all your WooCommerce products in a sortable and filterable table view instead of classic grid format view.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/hashbar-wp-notification-bar/\">HashBar</a></strong> – Create impressive and catchy notification bars to notify your customers by adding unlimited background colors and images to make your notification bar more professional.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/whols/\">Whols</a></strong> – WooCommerce Wholesale Prices: Set special prices for your wholesale products available in your stock and let your wholesale customers shop from your store in a more efficient way.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/ht-easy-google-analytics/\">HT Easy GA4</a></strong> – Add the latest Google Analytics property to your WordPress website integrating both mobile app and website usage data into a single GA Property.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/ever-compare/\">Ever Compare</a></strong> – Make product comparisons easier than ever before using this effective product comparison plugin.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/extensions-for-cf7/\">Extensions For CF7</a></strong> – Extend your CF7 Form functionalities by saving submission data in your WP database, creating conditional logic and redirecting users to any webpage after successful form submissions.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/wishsuite/\">WishSuite</a></strong> – Create stunning Wishlists for your WooCommerce store by using this handy Wishlist plugin.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/ht-builder/\">HT Builder</a></strong> – Build custom blog page, custom blog details page, search page, archive page, coming soon page, 404 page and custom template for header/footer.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/swatchly/\">Swatchly</a></strong> – Turn the WooCommerce product variation’s select options into more user-friendly swatches.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/wp-plugin-manager/\">WP Plugin Manager</a></strong> – Employ the power of this amazing plugin to disable plugins for certain pages or posts and get faster loading speed.</p>\n\";s:13:\"download_link\";s:53:\"https://downloads.wordpress.org/plugin/ht-builder.zip\";s:4:\"tags\";a:5:{s:12:\"blog-builder\";s:12:\"Blog Builder\";s:7:\"builder\";s:7:\"builder\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"page-builder\";s:12:\"page builder\";s:6:\"widget\";s:6:\"widget\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/ht-builder/assets/icon-128x128.png?rev=2167429\";}}i:11;a:24:{s:4:\"name\";s:34:\"HT Easy GA4 ( Google Analytics 4 )\";s:4:\"slug\";s:24:\"ht-easy-google-analytics\";s:7:\"version\";s:5:\"1.0.3\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:5:\"5.4.1\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:3;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:3;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:2000;s:10:\"downloaded\";i:6449;s:12:\"last_updated\";s:21:\"2022-02-09 3:22am GMT\";s:5:\"added\";s:10:\"2020-12-30\";s:8:\"homepage\";s:0:\"\";s:17:\"short_description\";s:74:\"Enable Google Analytics 4 tracking option on any WordPress website easily.\";s:11:\"description\";s:2457:\"<p>HT Easy GA4 ( Google Analytics 4 ) WordPress plugin has been developed by the HasThemes team that will prove useful, especially if you are upgrading to <a href=\"https://support.google.com/analytics/answer/10089681\" rel=\"nofollow ugc\">Google Analytics 4</a>, known as GA4. It is the most updated version of the Google Analytics tool that enables you to integrate mobile app and website usage data into a single GA Property.</p>\n<p>If you are running a website or app, you might already know how important the Google Analytics tool is when it comes to tracking and understanding different website data. Here website data refers to customer behavior, user experience, online content, device functionality, and many more.</p>\n<p>In case you are not familiar with the Google Analytics tool, it is one of the best web analytic tools that allows you to collect many vital reports, stats, using which you will get to discover things you probably didn&#8217;t even know about your website visitors. By analyzing these crucial data, you will be able to maximize your website performance while growing your business at the same time.</p>\n<p>In the past, it was a little complicated to combine website and mobile app usage data using the older Google Analytics tools. The only way it was possible was by using separate Google Analytics property.</p>\n<p>Using the latest Google Analytics 4 tool, you will get more advantages over the older Universal analytics tool.</p>\n<h3>Benefits of Google Analytics 4 ( GA4 )</h3>\n<ul>\n<li>Unified view between app and web</li>\n<li>Updated User Interface with several new reporting tools</li>\n<li>More intelligent user privacy and tracking features</li>\n<li>A Plethora of Parameters</li>\n</ul>\n<p>Though GA4 property enables more robust cross-device and cross-platform tracking, Google still recommends using the latest tool to take its advantage even if you don’t have any mobile app. You can use Google Analytics 4 for a website, an app, or both a website and an app together.</p>\n<p>To help you with adding the latest Google Analytics property to your WordPress website, the HT Easy GA4 ( Google Analytics 4 ) plugin will allow you to incorporate an analytic script to your existing theme and start tracking your website or mobile app usage data right away. Moreover, the plugin is super easy to use and you don’t have to write a single line of code. All you have to do is add a measurement ID, and you are good to go.</p>\n\";s:13:\"download_link\";s:67:\"https://downloads.wordpress.org/plugin/ht-easy-google-analytics.zip\";s:4:\"tags\";a:5:{s:9:\"analytics\";s:9:\"analytics\";s:2:\"ga\";s:2:\"ga\";s:6:\"google\";s:6:\"google\";s:16:\"google-analytics\";s:16:\"google analytics\";s:23:\"google-analytics-plugin\";s:23:\"google analytics plugin\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:77:\"https://ps.w.org/ht-easy-google-analytics/assets/icon-128x128.png?rev=2447705\";s:2:\"2x\";s:77:\"https://ps.w.org/ht-easy-google-analytics/assets/icon-256x256.png?rev=2447705\";}}i:12;a:24:{s:4:\"name\";s:61:\"HT Event &#8211; WordPress Event Manager Plugin for Elementor\";s:4:\"slug\";s:8:\"ht-event\";s:7:\"version\";s:5:\"1.4.1\";s:6:\"author\";s:47:\"<a href=\"https://htplugins.com/\">HT Plugins</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/devitemsllc/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:100;s:10:\"downloaded\";i:7002;s:12:\"last_updated\";s:21:\"2022-01-31 3:39am GMT\";s:5:\"added\";s:10:\"2018-11-11\";s:8:\"homepage\";s:31:\"http://demo.wphash.com/htevent/\";s:17:\"short_description\";s:82:\"Htevent is a WordPress event management plugin which helps you to show your event.\";s:11:\"description\";s:2174:\"<p>Htevent is a WordPress event management plugin which helps you to show your event.<br />\nThis is fully responsive and mobile friendly. You can create unlimited event for your website.<br />\nThis plugin has event details and archive page.<br />\nThis plugin also supports Elementor page builder, by using the Elementor Addons you will be able to show<br />\nthe events anywhere on your site in a quick time.<br />\nYou can see the plugin demo here : <a href=\"http://demo.wphash.com/htevent/\" rel=\"nofollow ugc\">Live Demo</a></p>\n<h3>Features:</h3>\n<ul>\n<li>Fully Responsive and Mobile Ready.</li>\n<li>Clean Design &amp; Code.</li>\n<li>No Coding Required.</li>\n<li>Event 5 Different Style.</li>\n<li>Event Slider  4 Different Style.</li>\n<li>Event pricing 2 Different Style.</li>\n<li>Event speaker 2 Different Style.</li>\n<li>Event sponsor 2 Different Style.</li>\n<li>Event video 3 Different Style.</li>\n<li>Event testimonial 2 Different Style.</li>\n<li>Event blog 1 Different Style.</li>\n<li>Event singer 1 Different Style.</li>\n<li>Easy event Option Page.</li>\n<li>Bootstrap Framework Based</li>\n<li>Customize the Number of Columns.</li>\n<li>Cross-browser Compatibility.</li>\n<li>Build with HTML5 &amp; CSS3.</li>\n</ul>\n<h3>Special Features:</h3>\n<p>*Event 5 Different Style.<br />\n* Event Details Page.<br />\n* Event speaker Details Page.<br />\n* Event Content Variations.<br />\n* Elementor Addons Included.<br />\n* Display Event By Category.<br />\n* Unlimited Color options.<br />\n* Google Font.<br />\n* Event Button Background Color Option.<br />\n* Event Button Background Hover Color Option.<br />\n* Carousel Option in Event Single Page.</p>\n<h3>NEED HELP?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to<br />\n<a href=\"https://htplugins.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n<h3><a href=\"https://wordpress.org/plugins/elementor/\">Elementor</a> page builder is required to use addons in this plugin.</h3>\n<p>HT Event WordPress Plugin has the following third-party resources:</p>\n<ol>\n<li>CMB2:<br />\nSource: <a href=\"https://wordpress.org/plugins/cmb2/\">cmb2</a></li>\n</ol>\n\";s:13:\"download_link\";s:51:\"https://downloads.wordpress.org/plugin/ht-event.zip\";s:4:\"tags\";a:5:{s:10:\"conferance\";s:10:\"Conferance\";s:9:\"elementor\";s:9:\"elementor\";s:15:\"elementor-addon\";s:15:\"elementor addon\";s:16:\"event-management\";s:16:\"event management\";s:8:\"wp-event\";s:8:\"WP Event\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/ht-event/assets/icon-128x128.png?rev=1972344\";}}i:13;a:24:{s:4:\"name\";s:7:\"HT Feed\";s:4:\"slug\";s:12:\"ht-instagram\";s:7:\"version\";s:5:\"1.2.3\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:1000;s:10:\"downloaded\";i:19485;s:12:\"last_updated\";s:21:\"2022-04-09 4:47am GMT\";s:5:\"added\";s:10:\"2018-12-31\";s:8:\"homepage\";s:22:\"https://htplugins.com/\";s:17:\"short_description\";s:120:\"WP Instagram is a elementor addons, visual composer addons, WordPress Default widgets and Ready Shortcode for WordPress.\";s:11:\"description\";s:2098:\"<p>WP Instagram is a WordPress Instagram Feed / Widget Plugin. Create Instagram Feed in a preferred style and place it to your website in any section easily.</p>\n<p>This plugin includes Elementor Addon, WP Bakery Page Builder addon, WordPress Widget, 3 Custom styles with different customization option, Slider enable/disable option and column control option.</p>\n<p>You can see the plugin demo here : <a href=\"http://demo.wphash.com/htmega/element-instagram\" rel=\"nofollow ugc\">Demo</a></p>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/ncf4j97fS64?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></span>\n<blockquote><p>\n  Ultimate Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Ultimate Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>Features:</h3>\n<ul>\n<li>Unlimited Color Varition.</li>\n<li>Slider Enable / Disable Options</li>\n<li>Comment Count Position Options</li>\n<li>Like Count Position Options</li>\n<li>Like Comment Style Options</li>\n<li>6+ Column Options</li>\n<li>Slider Row Options</li>\n<li>Slider Arrow Enable / Disable Options</li>\n<li>Slider Pagination Enable / Disable Options</li>\n<li>Slider Arrow Color Options</li>\n<li>Slider Pagination Color Options</li>\n</ul>\n<h3>Special Features:</h3>\n<ul>\n<li>Ready Visual Composer Addons , Elementor Addons, WordPress Widgets and Ready Shortcode.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:55:\"https://downloads.wordpress.org/plugin/ht-instagram.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:9:\"instagram\";s:9:\"Instagram\";s:14:\"instagram-feed\";s:14:\"instagram feed\";s:19:\"wordpress-instagram\";s:19:\"WordPress Instagram\";s:12:\"wp-instagram\";s:12:\"WP Instagram\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/ht-instagram/assets/icon-128x128.png?rev=2114629\";}}i:14;a:24:{s:4:\"name\";s:58:\"HT Mega &#8211; Absolute Addons for Elementor Page Builder\";s:4:\"slug\";s:21:\"ht-mega-for-elementor\";s:7:\"version\";s:5:\"1.8.7\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/devitemsllc/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:27;i:4;i:2;i:3;i:1;i:2;i:2;i:1;i:8;}s:11:\"num_ratings\";i:40;s:15:\"support_threads\";i:5;s:24:\"support_threads_resolved\";i:3;s:15:\"active_installs\";i:90000;s:10:\"downloaded\";i:1584405;s:12:\"last_updated\";s:21:\"2022-05-15 9:00am GMT\";s:5:\"added\";s:10:\"2018-11-22\";s:8:\"homepage\";s:21:\"https://wphtmega.com/\";s:17:\"short_description\";s:89:\"The HTMega is a elementor addons package for Elementor page builder plugin for WordPress.\";s:11:\"description\";s:33724:\"<p>HTMega is a absolute addons for elementor includes <strong>84+ elements</strong> &amp; <strong>360 Blocks</strong> with unlimited variations. HT Mega brings limitless possibilities. Embellish your site with the elements of HT Mega.</p>\n<p><strong>HT Mega Addons for Elementor one of the best free Elementor addons to supercharge your Elementor page builder and design your WordPress website more creatively with over 84+ free Elementor widgets. It has more than 90,000+ active installations! ?</strong></p>\n<h3>USEFUL LINKS ?</h3>\n<p><strong><a href=\"https://wphtmega.com\" rel=\"nofollow ugc\">Live Demo</a></strong> | <strong><a href=\"https://wphtmega.com/docs/\" rel=\"nofollow ugc\">Documentation</a></strong> | <strong><a href=\"https://www.youtube.com/watch?v=d7jAiAYusUg&amp;list=PLk25BQFrj7wEEGUHn9x2zwOql990bZAo_\" rel=\"nofollow ugc\">Video Tutorial</a></strong> | <strong><a href=\"https://wphtmega.com/pricing/\" rel=\"nofollow ugc\">Upgrade Pro</a></strong> | <strong><a href=\"https://ticket.hasthemes.com/\" rel=\"nofollow ugc\">Need Support?</a></strong></p>\n<h3>Free Unique Advanced Features Of HT Mega Elementor Addons: ?</h3>\n<h3>✅ Header/Footer Builder</h3>\n<p>This feature allows for creating a header/footer layout for the full website or specific page. There is an option to select the preferred header/footer globally or for a single page/post.</p>\n<h3>✅ Theme/Template builder:</h3>\n<p>This feature allows for creating different template/design/layout for a single archive/tag/category/search/404/coming soon/maintenance page.</p>\n<h3>✅ Sales Notification:</h3>\n<p>This feature allows showing the sales notification or popup to display real/fake orders. In the dashboard, there is an option to manage the design of the notification. <a href=\"https://hasthemes.com/woocommerce-sales-notification-using-woolentor/\" rel=\"nofollow ugc\">Check the video</a> for more details.</p>\n<h3>✅ Menu Builder:</h3>\n<p>This feature allows creating menu or mega menu using the Elementor page builder.</p>\n<h3>✅ Post Duplicator:</h3>\n<p>HT Post Duplicate provides functionality to create a clone of pages or posts. You can duplicate pages, posts, and custom posts with a single click, and it will be saved as a draft.</p>\n<h3>✅ Template Library:</h3>\n<p>Choose your page layout from template list. You can easily import the template with a single click. There are 15 Templates available in the free version, while the pro version contains a whopping collection of 789 templates.</p>\n<h3>HT Mega Absolute Addons for Elementor Page Builder</h3>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/d7jAiAYusUg?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></span>\n<h3>84+ Free Elementor Widgets Are Available ?</h3>\n<ol>\n<li><strong><a href=\"https://wphtmega.com/widget/element-accordion/\" rel=\"nofollow ugc\">Accordion (9 Styles) </a></strong> &#8211;  The accordion widget by HT Mega comes into play to add engaging and interactive accordion content (in both vertical and horizontal orientations) to your pages, posts, and anywhere. With this amazing Elementor accordion widget, you can easily create beautiful accordions that will captivate your visitors.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-heading/\" rel=\"nofollow ugc\">Heading (7 Styles) </a></strong> &#8211; Heading Widget on your website is to show off a variety of styles. With different headings, you&#8217;ll be able to make every page look unique and interesting.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-banner/\" rel=\"nofollow ugc\">Banner Box (4 Styles) </a></strong> &#8211; The Elementor Banner widget is an excellent tool for making your website&#8217;s banners more engaging and attractive to the eye. Using this widget, you can easily design and modify banners that will grab the attention of your visitors.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-blockquote/\" rel=\"nofollow ugc\">Block Quote (5 Styles) </a></strong> &#8211; To display an element that has been quoted from someplace else, use the Elementor block quote widget. The blockquote widget in HT Mega is available in a number of formats.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-brand/\" rel=\"nofollow ugc\">Brand (7 Styles) </a></strong> &#8211; The HT Mega Elementor Brand widget makes it easy to add brand logos to your web pages. It comes with numerous options right out of the box.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-business-hours/\" rel=\"nofollow ugc\">Business Hours (5 Styles) </a></strong> &#8211; The Business Hour widget makes it simple and straightforward to display your business hours. There are five distinct layouts to choose from, as well as the option to change the day and time. As a result, you may let your website visitors know when your company is open or closed.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-button/\" rel=\"nofollow ugc\">Button (5 Styles) </a></strong> &#8211; Button Widget will catch the visitor&#8217;s eye and make it easy to click through on any page of your website with its different styles.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-call-to-action/\" rel=\"nofollow ugc\">Call To Action (7 Styles) </a></strong> &#8211; The Elementor Call to Action Widget by HT Mega is a great tool for adding an interactive, customizable call-to action button on your WordPress website. Choose from 7 styles and adjust its size so it will fit any page!</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-contact-form/\" rel=\"nofollow ugc\">Contact Form (7 Styles) </a></strong> &#8211; The HT Mega Elementor Contact Form widget is useful for adjusting the appearance and feel of contact forms and displaying them attractively on your website.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-countdown/\" rel=\"nofollow ugc\">Countdown (7 Styles) </a></strong> &#8211; Countdown Widget allows you to create an eye-catching and practical time tracker that will help your audience quickly know the remaining time of your product offer.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-counter/\" rel=\"nofollow ugc\">Counter Up (6 Styles) </a></strong> &#8211; Elementor Counter Up Widget has a lot more customization options counter. It’s good for showing facts and figures.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-custom-carousel/\" rel=\"nofollow ugc\">Custom Carousel (7 Styles) </a></strong> &#8211; With the Elementor image carousel, you can display numerous gorgeous and engaging galleries for your site in a single place. It comes in seven different styles. Rather of adding individual pictures, you can use this fantastic widget to create a carousel with many images!</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-dropcaps/\" rel=\"nofollow ugc\">Drop Caps (5 Styles) </a></strong> &#8211; The HT Mega Drop Cap Widget allows you to add a number of drop cap styles to your website. The widget is simple to set up and customize, and it will look excellent regardless of the style or font you use for your page&#8217;s content.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/eelement-double-button/\" rel=\"nofollow ugc\">Double Button (5 Styles) </a></strong> &#8211; The Elementor Double Button widget in HT Mega Addons is ideal for anybody looking to enhance the functionality to their website by adding dual buttons anywhere.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-faq/\" rel=\"nofollow ugc\">FAQ (5 Styles) </a></strong> &#8211; The FAQ widget is a useful widget in presenting frequently added questions and answers in eye-catching styles.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-flipbox/\" rel=\"nofollow ugc\">Flip Box (5 Styles) </a></strong> &#8211; The HT Mega Elementor Flip Box widget is a great tool for adding gorgeous flip box content to your WordPress web pages and making them more attention-grabbing.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-google-map/\" rel=\"nofollow ugc\">Google Map (5 Styles) </a></strong> &#8211; With the HT Mega Elementor Add-ons plugin, you can create a personalized Google map that can be shown anywhere on your website. It has 5 unique styles.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-animated-heading/\" rel=\"nofollow ugc\">Animated Heading (7 Styles) </a></strong> &#8211; You can make custom animations for your page headings with the Elementor animated heading widget by HT Mega, which will help you stand out from the crowd. This useful widget lets you create animated headings that can be used as the headings for your website.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-image-comparison/\" rel=\"nofollow ugc\">Image Comparison (5 Styles) </a></strong> &#8211; This handy widget is useful to show the difference between two images. It gives you 5 unique styles to choose from. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-image-justify/\" rel=\"nofollow ugc\">Image Justify (5 Styles) </a></strong> &#8211; With HT Mega Elementor Image Justify Widget, you can effortlessly build a stunning and aligned image gallery on your web page.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-image-magnifier/\" rel=\"nofollow ugc\">Image Magnifier (5 Styles) </a></strong> &#8211; The Image Magnifier widget is effective  when you want to let your web visitors see the photos on the web page in an enlarged view. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-image-masonry/\" rel=\"nofollow ugc\">Image Masonry (5 Styles) </a></strong> &#8211; The picture Masonry Widget  is ideal for building visually appealing photo galleries. Images are presented in a responsive masonry layout, so they look amazing on any device your visitors are using.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-instagram/\" rel=\"nofollow ugc\">Instagram (5 Styles) </a></strong> &#8211; The Elementor Instagram widget in HT Mega lets you add eye-catching Instagram buttons to your web pages in four different layouts.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-light-box/\" rel=\"nofollow ugc\">Light Box (4 Styles) </a></strong> &#8211; A lightbox is a picture-displaying overlay or popup window that appears above the webpage. They highlight the image while darkening the rest of the page, allowing it to be viewable around the edges. Add a lightbox content to your pages and posts with this widget. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-inline-menu/\" rel=\"nofollow ugc\">Inline Menu (10 Styles) </a></strong> &#8211; Inline Menu Widget by HT Mega is a free and easy-to-use widget that will allow you to create horizontal navigation menus on your site very easily.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-user-login/\" rel=\"nofollow ugc\">User Login (5 Styles) </a></strong> &#8211; The User Login Widget helps you to create a login page easily. This page offers your visitor to log in to your website. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-user-register/\" rel=\"nofollow ugc\">User Register (5 Styles) </a></strong> &#8211; The User Registrar widget allows you complete control over your website&#8217;s user registrations. You&#8217;ll get a variety of Registration Forms for your users, each with its own set of pre-defined fields.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-image-marker/\" rel=\"nofollow ugc\">Image Marker (5 Styles) </a></strong> &#8211; The Image Marker widget allows you to add an image with detailed information about the image with a marker. The customization settings allow users incredible control over what they see on screen &#8211; whether its color style choices, font size preferences, image layout options, etc.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-modal/\" rel=\"nofollow ugc\">Modals (5 Styles) </a></strong> &#8211; The Elementor Modal Pop-Ups Widget is an excellent widget for creating high-quality modal pop-ups that your visitors will like. This simple widget makes adding modal pop-ups to your website easier and faster!</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-subscribe/\" rel=\"nofollow ugc\">Subscribe News Letter (5 Styles) </a></strong> &#8211; The Subscribe widget allows you to easily create buttons to subscription forms and displays on your web pages and posts. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-news-ticker/\" rel=\"nofollow ugc\">News Ticker (7 Styles) </a></strong> &#8211; The News Ticker Widget highlights the latest news headline or significant posts’ title in a scroller with incredible animation effects. Different layouts with different styles are available.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-notification/\" rel=\"nofollow ugc\">Notification (4 Styles) </a></strong> &#8211; Notification widget notifies you with a message box on your current page. It&#8217;s small and contains various different text colors to convey different messages.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-off-canvas/\" rel=\"nofollow ugc\">Off Canvas (4 Styles) </a></strong> &#8211; Off canvas widget is a great way to show off your content in an easy-to-use sidebar that can be triggered by clicking on it. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-panel-slider/\" rel=\"nofollow ugc\">Panel Slider (4 Styles) </a></strong> &#8211; The panel Slider widget offers you to show off your panel sliders on the website. It has a different layout which will attract your visitor.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-popover/\" rel=\"nofollow ugc\">Popovers (4 Styles) </a></strong> &#8211; The Popover widget is a marvelous element for displaying popovers on websites. The layouts can be adjusted to show the content that you want your visitors to see.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/post-carosul/\" rel=\"nofollow ugc\">Post Carousel (5 Styles) </a></strong> &#8211; Post Carousel allows you to build an engaging post carousel that will appeal to your readers.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-post-grid/\" rel=\"nofollow ugc\">Post Grid (5 Styles) </a></strong> &#8211; Post Grid widget displays posts in the grid that provides multiple layouts of a page. This widget shows the post title and featured image in this format to open an enlarged article view. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-post-grid-tab/\" rel=\"nofollow ugc\">Post Grid Tab (5 Styles) </a></strong> &#8211; In a grid layout, the Elementor Post Grid Tab widget in HT Mega shows the post title and featured picture in a special tabbed format.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-post-slider/\" rel=\"nofollow ugc\">Post Slider (5 Styles) </a></strong> &#8211; The Post Slider Widget is a dynamic slider that presents your posts with images attractively with sliders.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-pricing-list-view/\" rel=\"nofollow ugc\">Pricing List View (3 Styles) </a></strong> &#8211; The HT Mega Elementor Pricing table widget offers different types of pricing table styles for your single product.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-pricing-table/\" rel=\"nofollow ugc\">Pricing Table (7 Styles) </a></strong> &#8211; The HT Mega Elementor Pricing table widget offers different types of pricing table styles for your single product. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-progress-bar/\" rel=\"nofollow ugc\">Progress Bar (10 Styles) </a></strong> &#8211; With its 10 various designs, the HT Mega progress bar widget makes displaying percentage-based progress bars on web pages a breeze!</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-scroll-image/\" rel=\"nofollow ugc\">Scroll Image (2 Styles) </a></strong> &#8211; The Scroll image widget allows you to showcase your favorite images with a scroll, and you can pick whether your images should scroll from top to bottom or left to right.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-scroll-navigation/\" rel=\"nofollow ugc\">Scroll Navigation (4 Styles) </a></strong> &#8211; The Scroll navigation widget allows you to simplify the process of site navigation for your visitors, This widget allows you to flip through different sections within a single page. The HT Mega plugin provides 4 styles for this widget.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/elementor-search/\" rel=\"nofollow ugc\">Search (5 Styles) </a></strong> &#8211; The Search widget allows you to show a search option on your website. This unique Elementor search widget provides you with 5 styles. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-services/\" rel=\"nofollow ugc\">Services (7 Styles) </a></strong> &#8211; The Services Widget makes it easy to display services on your website. It comes with seven different styles for displaying the &#8216;services&#8217; content on web pages.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-single-post/\" rel=\"nofollow ugc\">Single Post (5 Styles) </a></strong> &#8211; The Single Post widget will allow you to highlight a single post on your website. This widget allows for more flexibility when it comes to displaying individual posts in different ways.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-social-shere/\" rel=\"nofollow ugc\">Social Share (9 Styles) </a></strong> &#8211; Social share widget is a special widget to share any of your products in any social media. This widget will increase your sales and earn more visitors. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-switcher/\" rel=\"nofollow ugc\">Switcher (9 Styles) </a></strong> &#8211; The switcher widget is the perfect tool for content switching. It allows you to quickly and easily switch between your pricing table, info sections, services, and other layouts. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-tab/\" rel=\"nofollow ugc\">Tab (5 Styles) </a></strong> &#8211; With just a few clicks, you can quickly and effortlessly create attractive, structured tab sections with the Elementor tabs widget. Tabs are efficient for websites that need to keep their content organized and accessible.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-data-table/\" rel=\"nofollow ugc\">Data Table (3 Styles) </a></strong> &#8211; The Elementor data table widget by HT Mega is a useful tool for quickly adding tables to your content. These tables are ideal for presenting data in an engaging and intriguing manner, making it simpler for your visitors to present the information.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-team-member/\" rel=\"nofollow ugc\">Team Member (8 Styles) </a></strong> &#8211; Team member widget is a great way to show the team member whom you work with or have worked for your company. This widget includes their names, social media links, and a brief description of what they do.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-testimonial/\" rel=\"nofollow ugc\">Testimonial Carousel (5 Styles) </a></strong> &#8211; The Testimonial Carousel widget is an excellent way for visitors to your website to get an idea of what you&#8217;re all about. You can customize it with a plethora of options and choose the layout that you prefer the most.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-testimonial-grid/\" rel=\"nofollow ugc\">Testimonial Grid (5 Styles) </a></strong> &#8211; You can use this widget to show client testimonials in an easy-to-read grid layout, allowing web visitors to see what others have said about your product or service.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-thumbnails-gallery/\" rel=\"nofollow ugc\">Thumbnails Gallery (4 Styles) </a></strong> &#8211; The Thumbnail Gallery Widget allows you to add multiple images to your image gallery page. You can choose from different layouts, such as the Basic Gallery layout or the Masonry Layout. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-toggle/\" rel=\"nofollow ugc\">Toggle (3 Styles) </a></strong> &#8211; The Toggle Widget is perfect for hiding content to make it accessible only after the user clicks on a specific title.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-tooltip/\" rel=\"nofollow ugc\">Tool Tip (4 Styles) </a></strong> &#8211; Tooltip Widget is a lightweight, simple widget that interactively displays your Tooltip content using icons, text, and images. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-twitter-feed/\" rel=\"nofollow ugc\">Twitter Feed (5 Styles) </a></strong> &#8211; The Twitter Feed widget is a great way to display and share your favorite tweets with the world. You can choose from different layouts like grids, columns, or even full width, which you prefer most.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-vertical-timeline/\" rel=\"nofollow ugc\">Vertical Timeline (3 Styles) </a></strong> &#8211; The Vertical Timeline widget is a great way to show your project&#8217;s phases in an easy-to-follow format. You can use it for everything from Roadmaps and upcoming events through completed projects, so there&#8217;ll always be clarity on what you need next.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/elementor-video-player/\" rel=\"nofollow ugc\">Video Player (4 Styles) </a></strong> &#8211; The Video Player Widget is a useful  tool with intuitive options to showcase your YouTube, and Vimeo videos in style for WordPress using Elementor. You can add a custom thumbnail image and set an overlay that will present the videos on web pages in a more appealing and attractive way.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-weather/\" rel=\"nofollow ugc\">Weather (3 Styles) </a></strong> &#8211; The weather widget is the perfect widget for updating your location’s weather. You can also set multiple locations and have the latest weather updates.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-working-process/\" rel=\"nofollow ugc\">Working Process (4 Styles) </a></strong> &#8211; The Working Process widget can be used for displaying the working process and offers a variety of layout options. This widget displays the steps in an easy-to-follow order, with text indicators that show which step you&#8217;re working on.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-page-not-found-content/\" rel=\"nofollow ugc\">404 Page Content (4 Styles) </a></strong> &#8211; Page Not Found Content widget shows a message page not found or 404 when the specific page failed to be found.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-bbpress/\" rel=\"nofollow ugc\">BBPress</a></strong> &#8211; The Bbpress widget is an excellent way to include Bbpress functionality into your WordPress website. Adding forums, topics, and posts to your site is simple with the Bbpress widget.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-booked-calender/\" rel=\"nofollow ugc\">Booked Calendar</a></strong> &#8211; The Booked Calendar widget comes into play for any business website as it enables you to add a calender to the pages and posts of your site having full control of the look and feel of the calender. It comes with several different styles.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-buddypress/\" rel=\"nofollow ugc\">BuddyPress</a></strong> &#8211; Buddypress widget allows you to  integrate Buddypress content. With the help of this widget, you can manage the content and style of your BuddyPress content with ease.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-caldera-forms/\" rel=\"nofollow ugc\">Caldera Forms</a></strong> &#8211; Using the Caldera forms widget, integrating and displaying caldera forms on your web pages will be easier and faster with tons of customization options at your disposal.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-download-monitor/\" rel=\"nofollow ugc\">Download monitor</a></strong> &#8211; The Download Monitor widget from HT Mega Elementor is ideal for customizing the appearance and feel of your download link content. With this useful widget, you may change the look of your download button content.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-easy-digital-downloads/\" rel=\"nofollow ugc\">Easy digital downloads</a></strong> &#8211; This helpful widget displays the content of your downloads in the Easy Digital Downloads plugin. It has a lot of options for modifying the design, content, and so on, and it provides your download content a professional look.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-event-countdown/\" rel=\"nofollow ugc\">Event Countdown</a></strong> &#8211; The Events Countdown widget allows you to quickly and simply create beautiful event countdown content. As a result, you can see how much time is remaining for a specific event in days, hours, minutes, and so on.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-gravity-forms/\" rel=\"nofollow ugc\">Gravity Forms</a></strong> &#8211; With the help of this simple Gravity forms widget from HT Mega, you can design and decorate your gravity forms and display them on web pages in a stylish way.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-instagram/\" rel=\"nofollow ugc\">Instagram</a></strong> &#8211; Instagram is the finest technique to get your site visitors&#8217; attention. HT Mega&#8217;s Instagram widget lets you add eye-catching Instagram buttons to your web pages in four different layouts.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-instagram-feed/\" rel=\"nofollow ugc\">Instagram Feed</a></strong> &#8211; The HT Mega Elementor Instagram feed widget enables you to display your Instagram feed on your website. This widget gives your visitors a much more visually appealing experience when displaying your Instagram gallery to the WordPress web pages.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-job-manager/\" rel=\"nofollow ugc\">Job Manager</a></strong> &#8211; Job Manger is a useful widget to display the job postings on your web pages with tons of handy cusstomizable options.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-layer-slider/\" rel=\"nofollow ugc\">Layer Slider</a></strong> &#8211; The HT Mega Elementor Layer Slider widget is a fantastic way to create simple responsive layer sliders quickly. It provides you with all the options you need to make everything change in order for the website to display layer sliders.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-ninja-form/\" rel=\"nofollow ugc\">Ninja Form</a></strong> &#8211; Ninja Forms widget helps you personalize the style of Ninja forms on your web pages.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-quform/\" rel=\"nofollow ugc\">QU Form</a></strong> &#8211; Quform is a drag-and-drop form builder for WordPress that lets you create awesome forms in no time. With the Quform widget in HT Mega, you can personalize the look and feel of Quforms contents on your web pages.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-tablepress/\" rel=\"nofollow ugc\">TablePress</a></strong> &#8211; TablePress makes creating and maintaining beautiful tables a breeze. If you want to manage the content of TablePress on your web pages, this widget can help.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-subscribe/\" rel=\"nofollow ugc\">MailChimp for WP</a></strong> &#8211; The HT Mega Elementor MailChimp for WP widget is helpful in managing the look and feel of your MailChimp subscribe form content.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-wp-forms/\" rel=\"nofollow ugc\">WP Forms</a></strong> &#8211; The HT Mega Elementor WPForms widget makes it simple to edit WPForms content on your website. This widget can help you control the content of WPForms if you&#8217;ve incorporated it into your webpages.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-woocommerce-add-to-cart/\" rel=\"nofollow ugc\">WooCommerce add to cart</a></strong> &#8211; The WooCommerce add to Cart widget helps you create the add-to-cart button so that customers can add their desired items to the cart right away and make purchases easily. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-woocommerce-category/\" rel=\"nofollow ugc\">WooCommerce Category</a></strong> &#8211; The WooCommerce Category Widget allows you to organize and categorize products on your WooCommerce site.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-woocommerce-cart-page/\" rel=\"nofollow ugc\">WooCommerce Cart Page</a></strong> &#8211; The WooCommerce cart page widget comes into play for any WooCommerce website as it allows you to modify your cart layout with options to edit titles, labels, placeholders, etc. </li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-checkout-page/\" rel=\"nofollow ugc\">WooCommerce Checkout Page</a></strong> &#8211; The Woocommerce Checkout widget helps you finetune your WooCommerce checkout page layout with ease. It comes with a plethora of options to embellish your WooCommerce checkout page.</li>\n<li><strong><a href=\"https://wphtmega.com/widget/element-special-day-offer/\" rel=\"nofollow ugc\">Special Day Offer</a></strong> &#8211; This widget is a great way to entice customers with special deals. You can easily add banners and choose from different layouts that best showcase your offer, all through the HT Mega Elementor Special Day Offer Widget!</li>\n</ol>\n<h3>Features:</h3>\n<ul>\n<li>Fully responsive and mobile ready.</li>\n<li>Unlimited Color and Typography options.</li>\n<li>Retina Ready</li>\n<li>Fully Customizable every element</li>\n<li>Every element enable / disable option panel.</li>\n<li>877 Google Font Supported.</li>\n<li>Cross Browser Compatible.</li>\n<li>15 Categories / Template Sets </li>\n<li>15 Page Templates</li>\n</ul>\n<h3>Exclusive HT Mega Pro Features:</h3>\n<ul>\n<li>39 Categories / Template Sets </li>\n<li>789 Page Templates</li>\n<li>Cross Domain Copy Paste</li>\n<li>Blog Search Page Builder</li>\n<li>404 Error Page Builder</li>\n<li>Coming soon Page Builder</li>\n<li>Blog Archive Category Wise Individual layout</li>\n<li>Blog Archive Tag Wise Individual layout</li>\n<li>Fakes Notification</li>\n<li>Notification Showing Position</li>\n<li>Notification Image Position</li>\n<li>Time Interval Each Notification</li>\n<li>Sales Upto Date Option</li>\n<li>Incoming Animation Option</li>\n<li>Outgoing Animation Option</li>\n<li>Background Color Option</li>\n<li>Heading Color Option</li>\n<li>Content Color Option</li>\n<li>Cross Icon Color Option</li>\n</ul>\n<p><strong><a href=\"https://wphtmega.com/pricing/\" rel=\"nofollow ugc\">PURCHASE HT Mega PRO FROM OUR WEBSITE</a></strong></p>\n<h3>Free WooCommerce Plugins</h3>\n<blockquote>\n<p>Are you searching for WooCommerce ELementor Addon?<br />\n  Try to use our best WooCommerce ELementor Addon &#8211; WooLentor<br />\n  42 Custom Grid Layouts<br />\n  18 Elementor Widget<br />\n  <a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooCommerce Template Builder</a></p>\n</blockquote>\n<h3>Free WooCommerce Themes</h3>\n<p><a href=\"https://hasthemes.com/8tr5\" rel=\"nofollow ugc\">99fy &#8211; Free WooCommerce Themes</a> is one of our best free WooCommerce Themes, free version includes 99 home pages with 24 niches. Free and pro version is available. <a href=\"https://hasthemes.com/8tr5\" rel=\"nofollow ugc\">TRY FREE VERSION OF 99FY</a></p>\n<h3>Common Issues and Solutions:</h3>\n<ol>\n<li>Elementor editor fails to load<br />\nAns. It is due to your server PHP setting. You can increase PHP memory limit from wp-config.php file or php.ini file<br />\n<a href=\"https://wphtmega.com/docs/how-to-increase-php-memory-limit-in-wordpress/\" rel=\"nofollow ugc\">View Documentation</a></li>\n</ol>\n<h3>Ask for it to your host</h3>\n<blockquote>\n<p>I’m interested in running the open-source <a href=\"https://wordpress.org/\">WordPress</a> web software and I was wondering if my account supported the following:<br />\n  * PHP 7.3 or greater<br />\n  * MySQL 5.6 or greater OR MariaDB 10.0 or greater<br />\n  * PHP memory_limit = 512M<br />\n  * max_execution_time = 300<br />\n  Thanks!</p>\n</blockquote>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugins?<br />\nNeeds assistance to use this plugins?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a> ?</p>\n<h3>Check out our other projects</h3>\n<ul>\n<li>\n<p><a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor</a> &#8211; WooCommerce page builder for Elementor Addon. Create unlimited product grid, layouts, custom product and shop pages layouts.</p>\n</li>\n<li>\n<p><a href=\"https://wordpress.org/plugins/wc-builder/\">WC Builder</a> – WooCommerce Page Builder for WPBakery. Create custom product and Shop pages easily.</p>\n</li>\n<li>\n<p><a href=\"https://wordpress.org/plugins/wp-plugin-manager/\">WP Plugin Manager</a> – Deactivate plugins per page will help to reduce page size, increase website performance and speed.</p>\n</li>\n</ul>\n<p>Visit <a href=\"https://hasthemes.com/\" rel=\"nofollow ugc\">HasThemes</a> for more details about HTML, Shopify and WordPress products and services.</p>\n\";s:13:\"download_link\";s:64:\"https://downloads.wordpress.org/plugin/ht-mega-for-elementor.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:16:\"elementor-addons\";s:16:\"elementor addons\";s:16:\"elementor-blocks\";s:16:\"Elementor Blocks\";s:22:\"elementor-page-builder\";s:22:\"elementor page builder\";s:17:\"elementor-widgets\";s:17:\"elementor widgets\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/ht-mega-for-elementor/assets/icon-128x128.png?rev=2062798\";}}i:15;a:24:{s:4:\"name\";s:53:\"HT Mega – Absolute Addons for WPBakery Page Builder\";s:4:\"slug\";s:20:\"ht-mega-for-wpbakery\";s:7:\"version\";s:5:\"1.0.5\";s:6:\"author\";s:54:\"<a href=\"https://hasthemes.com/plugins\">HT Plugins</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:1;s:15:\"active_installs\";i:200;s:10:\"downloaded\";i:3382;s:12:\"last_updated\";s:21:\"2022-02-09 3:36am GMT\";s:5:\"added\";s:10:\"2018-12-19\";s:8:\"homepage\";s:32:\"http://demo.wphash.com/htmegavc/\";s:17:\"short_description\";s:97:\"The HTMega is a WPBakery Page builder addons package for WPBakery Page Builder plugin for&hellip;\";s:11:\"description\";s:4433:\"<p>HTMega is a absolute addons for WPBakery Page builder includes 29+ elements with unlimited variations. HT Mega brings limitless possibilities. Embellish your site with the elements of HT Mega.</p>\n<p>You can see the plugin demo here : <a href=\"http://demo.wphash.com/htmegavc/\" rel=\"nofollow ugc\">Demo</a></p>\n<h3>Avaible Elements</h3>\n<ol>\n<li><a href=\"http://demo.wphash.com/htmegavc/accordion/\" rel=\"nofollow ugc\">Accordion &#8211; 9 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/animated-heading/\" rel=\"nofollow ugc\">Animated Heading &#8211; 7 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/blockquote/\" rel=\"nofollow ugc\">Block Quote &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/brands/\" rel=\"nofollow ugc\">Brand &#8211; 7 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/business-hours/\" rel=\"nofollow ugc\">Business Hours &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/button/\" rel=\"nofollow ugc\">Button &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/call-to-action/\" rel=\"nofollow ugc\">Call To Action &#8211; 7 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/contact-form/\" rel=\"nofollow ugc\">Contact Form &#8211; 6 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/countdown/\" rel=\"nofollow ugc\">Countdown &#8211; 7 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/counter/\" rel=\"nofollow ugc\">Counter Up &#8211; 6 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/dropcaps/\" rel=\"nofollow ugc\">Dropcaps &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/faq/\" rel=\"nofollow ugc\">Faq &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/google-map/\" rel=\"nofollow ugc\">Google Map &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/image-comparison/\" rel=\"nofollow ugc\">Image Comparison &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/images-grid/\" rel=\"nofollow ugc\">Image Grid &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/image-justify/\" rel=\"nofollow ugc\">Image Justify &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/image-magnifier/\" rel=\"nofollow ugc\">Image Magnifire &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/image-masonry/\" rel=\"nofollow ugc\">Image Masonary &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/lightbox/\" rel=\"nofollow ugc\">Light Box &#8211; 4 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/subscribe/\" rel=\"nofollow ugc\">Mailchimp Subscribe News Letter &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/popovers/\" rel=\"nofollow ugc\">Popovers &#8211; 4 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/pricing-table/\" rel=\"nofollow ugc\">Pricing Table &#8211; 7 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/progress-bar/\" rel=\"nofollow ugc\">Progress Bar &#8211; 10 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/section-title/\" rel=\"nofollow ugc\">Section Title &#8211; 7 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/thumbnails-gallery/\" rel=\"nofollow ugc\">Thumbnails Gallery &#8211; 4 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/team/\" rel=\"nofollow ugc\">Team Member &#8211; 8 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/testimonial/\" rel=\"nofollow ugc\">Testimonial carosel &#8211; 5 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/tooltips/\" rel=\"nofollow ugc\">Tool Tip &#8211; 4 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/vertical-timeline/\" rel=\"nofollow ugc\">Verticle Timeline &#8211; 3 Styles </a></li>\n<li><a href=\"http://demo.wphash.com/htmegavc/video-player/\" rel=\"nofollow ugc\">Video Player &#8211; 4 Styles </a></li>\n</ol>\n<h3>Features:</h3>\n<ul>\n<li>Fully responsive and mobile ready.</li>\n<li>Unlimited Color and Typography options.</li>\n<li>Retina Ready</li>\n<li>Fully Customizable every element</li>\n<li>Every element enable / disable options panel.</li>\n<li>877 Google Fonts Supported.</li>\n<li>Cross Browser Compatible.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugins?<br />\nNeeds assistance to use this plugins?<br />\nFeel free to <a href=\"https://htplugins.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:63:\"https://downloads.wordpress.org/plugin/ht-mega-for-wpbakery.zip\";s:4:\"tags\";a:4:{s:11:\"mega-addons\";s:11:\"mega addons\";s:8:\"wpbakery\";s:8:\"WPBakery\";s:15:\"wpbakery-addons\";s:15:\"wpbakery addons\";s:21:\"wpbakery-page-builder\";s:21:\"wpbakery page builder\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/ht-mega-for-wpbakery/assets/icon-128x128.png?rev=2062835\";}}i:16;a:24:{s:4:\"name\";s:57:\"HT Menu &#8211; WordPress Mega Menu Builder for Elementor\";s:4:\"slug\";s:12:\"ht-menu-lite\";s:7:\"version\";s:5:\"1.1.8\";s:6:\"author\";s:45:\"<a href=\"http://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:56;s:7:\"ratings\";a:5:{i:5;i:4;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:5;}s:11:\"num_ratings\";i:9;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:1000;s:10:\"downloaded\";i:22865;s:12:\"last_updated\";s:21:\"2021-09-01 8:42am GMT\";s:5:\"added\";s:10:\"2019-07-09\";s:8:\"homepage\";s:40:\"http://demo.shrimpthemes.com/1/megamenu/\";s:17:\"short_description\";s:82:\"HT Menu is a Elementor page builder addon to create menu and mega menu for&hellip;\";s:11:\"description\";s:2250:\"<p>HT Menu is a Elementor page builder addon to create menu and mega menu for WordPress websites. It allows to add Elementor templates to build coloumn and use Elementor widgets to create mega menu.<br />\nIt has option to add individual menu widthand sub menu position.</p>\n<p>In the pro verion, it has option to add menu icon, badge and predefined 10 Menu Layouts. It will save time to develop mega menu for your website.</p>\n<p><a href=\"http://demo.shrimpthemes.com/1/megamenu/\" rel=\"nofollow ugc\">Check the live demo</a></p>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/oAND7tZFidI?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></span>\n<h3>Features:</h3>\n<ul>\n<li>Add Elementor Template under a menu.  </li>\n<li>Individual Menu Width Control Option.</li>\n<li>Sub Menu Position.</li>\n</ul>\n<h3>Pro Features:</h3>\n<ul>\n<li>Menu Icon Picker.</li>\n<li>Menu Icon Color.</li>\n<li>Menu Badge.</li>\n<li>Menu Badge Color.</li>\n<li>Menu Badge Background Color.</li>\n</ul>\n<h3>Absolute Addons for Elementor Page Builder</h3>\n<blockquote>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Absolute Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>WooLentor – WooCommerce Elementor Addons + Builder</h3>\n<blockquote>\n<p>Don&#8217;t forgete to check our WooCommerce Page Builder for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor – WooCommerce Elementor Addons + Builder</a><br />\n  Includes 42 Product Layout Options &amp; 41 Elementor Addons.</p>\n</blockquote>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:55:\"https://downloads.wordpress.org/plugin/ht-menu-lite.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:9:\"mega-menu\";s:9:\"mega menu\";s:8:\"megamenu\";s:8:\"megamenu\";s:4:\"menu\";s:4:\"menu\";s:6:\"widget\";s:6:\"widget\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/ht-menu-lite/assets/icon-128x128.jpg?rev=2120012\";}}i:17;a:24:{s:4:\"name\";s:27:\"HT Newsletter for Elementor\";s:4:\"slug\";s:27:\"ht-newsletter-for-elementor\";s:7:\"version\";s:5:\"1.0.8\";s:6:\"author\";s:66:\"<a href=\"https://profiles.wordpress.org/htplugins/\">HT Plugins</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:900;s:10:\"downloaded\";i:7126;s:12:\"last_updated\";s:21:\"2021-09-01 3:58am GMT\";s:5:\"added\";s:10:\"2019-03-22\";s:8:\"homepage\";s:22:\"https://htplugins.com/\";s:17:\"short_description\";s:64:\"The Mailchimp for WP Widget is a elementor addons for WordPress.\";s:11:\"description\";s:993:\"<p>HT Newsletter for Elementor is a elementor addons for elementor page bulider. It&#8217;s Help to you easily drag and drop Mailchimp for WordPress.<br />\n<a href=\"https://wordpress.org/plugins/mailchimp-for-wp/\">Required Plugin: Mailchimp for WordPress</a></p>\n<blockquote><p>\n  Ultimate Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Ultimate Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>Features:</h3>\n<ul>\n<li>Drag and drop the widget</li>\n<li>Custom Styling Options</li>\n<li>Show Newsletter form in any place on your website.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:70:\"https://downloads.wordpress.org/plugin/ht-newsletter-for-elementor.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:16:\"elementor-addons\";s:16:\"elementor addons\";s:9:\"mailchimp\";s:9:\"mailchimp\";s:10:\"newsletter\";s:10:\"newsletter\";s:7:\"widgets\";s:7:\"widgets\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/ht-newsletter-for-elementor/assets/icon-128x128.png?rev=2054992\";}}i:18;a:24:{s:4:\"name\";s:61:\"HT Portfolio &#8211; WordPress Portfolio Plugin for Elementor\";s:4:\"slug\";s:12:\"ht-portfolio\";s:7:\"version\";s:5:\"1.1.1\";s:6:\"author\";s:66:\"<a href=\"https://profiles.wordpress.org/htplugins/\">HT Plugins</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:20;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:2;}s:11:\"num_ratings\";i:2;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:300;s:10:\"downloaded\";i:5748;s:12:\"last_updated\";s:21:\"2021-09-30 5:59am GMT\";s:5:\"added\";s:10:\"2019-03-27\";s:8:\"homepage\";s:22:\"https://htplugins.com/\";s:17:\"short_description\";s:55:\"HT Portfolio - WordPress Portfolio Plugin for Elementor\";s:11:\"description\";s:3436:\"<p>HT Portfolio &#8211; Is a handy tool that comes to assist you bring ease and perfection. We presume that you are bogged down with handling lots of other stuffs and you need to have e tool that will make your works easier than ever. We are here with HT Portfolio &#8211; WordPress Portfolio Plugin for Elementor Plugin for you.</p>\n<p>HT Portfolio is an excellent Elementor Plugin with tons of beautiful features. It has Masonary Portfolio, Filterable Portfolio, Portfolio Gallery, Easy Portfolio, Category based Portfolio items and Portfolio Settings. You can show the Numbering, Title, Category, Icon, Category-wise Portfolio or even you can hide them.</p>\n<p>However, setting multiple columns has also been a piece of cake through HT Portfolio. You can create multiple columns like 1 Column, 2 Column, 3 Column and 4 Column etc. using this plugin.</p>\n<p>In addition, you don’t need to have any coding knowledge to work with this plugin. Clean design and smart code will strengthen your website. This Bootstrap 4 based elementor plugin has Portfolio Detail page, Onclick Lightbox on The Gallery, Video Option, Font Awesome Icon, Unlimited Color Options, Featured Image Support etc.</p>\n<p>Furthermore, HT Portfolio is 100% Responsive and has mobile-ready layout as well as cross-browser compatibility. Install HT Portfolio elementor plugins right now and enjoy a hassle-free smooth website management. We are here to support you too with the best of our experience and dedication.</p>\n<p>A theme using HT Portfolio Plugin : <a href=\"http://demo.shrimpthemes.com/5/minimax/\" rel=\"nofollow ugc\">Live Demo</a></p>\n<h3>Features:</h3>\n<ul>\n<li>Masonary Portfolio.</li>\n<li>Filterable Portfolio.</li>\n<li>Portfolio Gallery.</li>\n<li>Easy Portfolio/Gallery Option Page.</li>\n<li>Category Based Portfolio Item.</li>\n<li>Portfolio Settings.</li>\n<li>Multiple Column Layout.</li>\n<li>Numbering – Show Numbering System.</li>\n<li>Title,Catogory,Icon – Show/Hide Option.</li>\n<li>Catogory Selection Wise Portfolio Show/Hide Option.</li>\n<li>Show/Hide Filters.</li>\n<li>Unlimited Filter Colors.</li>\n<li>Portfolio Masonry Gallery.</li>\n<li>Link Portfolio Gallery.</li>\n<li>Spacing or Without Spacing – Show Portfolio Gallery With and Without Spacing.</li>\n<li>Portfolio Gallery Images Order Buttons Like Ascending, Descending &amp; Shuffle.</li>\n<li>Set Multiple Column Layouts Like 1 Column, 2 Column, 3 Column, 4 Column.</li>\n<li>Onclick Lightbox On The Gallery.</li>\n<li>Video Option Portfolio/Gallery.</li>\n<li>Easily Customizable Portfolio.</li>\n<li>Portfolio Details Page.</li>\n<li>Fully Responsive and Mobile Ready.</li>\n<li>Clean Design &amp; Code.</li>\n<li>No Coding Required.</li>\n<li>Bootstrap Framework Based.</li>\n<li>FontAwesome Icon.</li>\n<li>Image Icon Support.</li>\n<li>Fetured Image Support.</li>\n<li>Customize the Number of Columns.</li>\n<li>Cross-browser Compatibility.</li>\n<li>Build With HTML5 &amp; CSS3.</li>\n<li>Unlimited Color Options.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n<h3><a href=\"https://wordpress.org/plugins/elementor/\">Elementor</a> page builder is required to use addons in this plugin.</h3>\n<p>HT Portfolio &#8211; WordPress Portfolio Plugin for Elementor has the following third-party resources:</p>\n\";s:13:\"download_link\";s:55:\"https://downloads.wordpress.org/plugin/ht-portfolio.zip\";s:4:\"tags\";a:5:{s:20:\"filterable-portfolio\";s:20:\"filterable portfolio\";s:7:\"gallery\";s:7:\"gallery\";s:18:\"masonary-portfolio\";s:18:\"Masonary Portfolio\";s:9:\"portfolio\";s:9:\"portfolio\";s:17:\"portfolio-gallery\";s:17:\"portfolio gallery\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/ht-portfolio/assets/icon-128x128.png?rev=2058085\";}}i:19;a:24:{s:4:\"name\";s:51:\"HT Service &#8211; Roofing Service WordPress Plugin\";s:4:\"slug\";s:10:\"ht-service\";s:7:\"version\";s:6:\"1.0.16\";s:6:\"author\";s:47:\"<a href=\"https://htplugins.com/\">HT Plugins</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/devitemsllc/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:40;s:10:\"downloaded\";i:1821;s:12:\"last_updated\";s:21:\"2022-04-12 9:26am GMT\";s:5:\"added\";s:10:\"2018-10-25\";s:8:\"homepage\";s:31:\"http://demo.wphash.com/shieldem\";s:17:\"short_description\";s:49:\"HT Service is a Roofing Service WordPress Plugin.\";s:11:\"description\";s:2735:\"<p>HT Service is a Roofing Service WordPress plugin which helps you exhibit your services, portfolios or products in a befitting manner. It is a fully responsive and mobile friendly plugin. To create unlimited service for the website, HT Service is second to none.<br />\nIn addition, this plugin supports Elementor page builder. Using the Elementor Page Builder, you can show the services anywhere in the site in a quick time. Creativity and effectiveness is all around in this WordPress Plugin.</p>\n<p>A theme using HT Service Plugin : <a href=\"http://demo.wphash.com/shieldem\" rel=\"nofollow ugc\">Live Demo</a><br />\nPurchase a Premium <a href=\"https://1.envato.market/gyJW2\" rel=\"nofollow ugc\">Roofing Service WordPress Theme</a> only at $49</p>\n<h3>Features:</h3>\n<ul>\n<li>Fully Responsive and Mobile Ready.</li>\n<li>Clean Design &amp; Code.</li>\n<li>No Coding Required.</li>\n<li>3 Different Service Style.</li>\n<li>Easy Service Option Page.</li>\n<li>Bootstrap Framework Based</li>\n<li>FontAwesome Icon.</li>\n<li>Image icon Support.</li>\n<li>Fetured Image Support.</li>\n<li>Customize the Number of Columns.</li>\n<li>Cross-browser Compatibility.</li>\n<li>Build with HTML5 &amp; CSS3.</li>\n</ul>\n<h3>Special Features:</h3>\n<ul>\n<li>Service Details Page.</li>\n<li>Service Content Variations.</li>\n<li>Related Service Show/Hide Option.</li>\n<li>Related Service Title Change Option.</li>\n<li>Featured Image Show/Hide Option.</li>\n<li>Elementor Addons Included.</li>\n<li>Display Service By Grid/Carousel.</li>\n<li>Display Service By Category.</li>\n<li>Title Link Show/Hide Option.</li>\n<li>Unlimited Color options.</li>\n<li>Service Title Font Color Option.</li>\n<li>Service Content Font Color Option.</li>\n<li>Service Icon Color Option.</li>\n<li>Service Box Background Color Option.</li>\n<li>Service Box Background Hover Color Option.</li>\n<li>Service Box Border Color Option.</li>\n<li>Service Box Border Hover Color Option.</li>\n<li>Carousel Option.</li>\n<li>Carousel Navigation Icon Select Option.</li>\n<li>Carousel Navigation Style Option.</li>\n<li>Carousel AutoPlay Control Option.</li>\n<li>Autoplay Speed Control Option.</li>\n<li>Unlimited Service Box Anywhere Your  Theme</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://htplugins.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n<h3><a href=\"https://wordpress.org/plugins/elementor/\">Elementor</a> page builder is required to use addons in this plugin.</h3>\n<p>HT Service &#8211; Roofing Service WordPress Plugin has the following third-party resources:</p>\n<ol>\n<li>CMB2:<br />\nSource: <a href=\"https://wordpress.org/plugins/cmb2/\">cmb2</a></li>\n</ol>\n\";s:13:\"download_link\";s:53:\"https://downloads.wordpress.org/plugin/ht-service.zip\";s:4:\"tags\";a:5:{s:15:\"roofing-service\";s:15:\"Roofing Service\";s:7:\"service\";s:7:\"service\";s:11:\"service-box\";s:11:\"service box\";s:12:\"service-list\";s:12:\"Service List\";s:14:\"service-plugin\";s:15:\"Service plugin.\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/ht-service/assets/icon-128x128.png?rev=1962917\";}}i:20;a:24:{s:4:\"name\";s:23:\"HT Slider For Elementor\";s:4:\"slug\";s:23:\"ht-slider-for-elementor\";s:7:\"version\";s:5:\"1.3.3\";s:6:\"author\";s:66:\"<a href=\"https://profiles.wordpress.org/htplugins/\">HT Plugins</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:2;i:4;i:1;i:3;i:0;i:2;i:1;i:1;i:0;}s:11:\"num_ratings\";i:4;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:7000;s:10:\"downloaded\";i:68834;s:12:\"last_updated\";s:21:\"2022-04-09 6:17am GMT\";s:5:\"added\";s:10:\"2019-03-24\";s:8:\"homepage\";s:22:\"https://htplugins.com/\";s:17:\"short_description\";s:71:\"The HT Slider For Elementor Widget is a elementor addons for WordPress.\";s:11:\"description\";s:9817:\"<p>HT Slider For Elementor is a elementor addons for elementor page bulider. You can create a slider easily drag and drop From Elementor Page bulider addons.</p>\n<blockquote><p>\n  Ultimate Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Ultimate Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>Avaible Elements</h3>\n<p>1.<a href=\"https://99fy.thethemedemo.com/animal/\" rel=\"nofollow ugc\">Animal Slider One</a><br />\n2.<a href=\"https://99fy.thethemedemo.com/animal/home-2/\" rel=\"nofollow ugc\">Animal Slider Two</a><br />\n3.<a href=\"https://99fy.thethemedemo.com/animal/home-3/\" rel=\"nofollow ugc\">Animal Slider Three</a><br />\n4.<a href=\"https://99fy.thethemedemo.com/animal/home-4/\" rel=\"nofollow ugc\">Animal Slider Four</a><br />\n5.<a href=\"https://99fy.thethemedemo.com/book/\" rel=\"nofollow ugc\">Book Slider One</a><br />\n6.<a href=\"https://99fy.thethemedemo.com/book/home-two/\" rel=\"nofollow ugc\">Book Slider Two</a><br />\n7.<a href=\"https://99fy.thethemedemo.com/book/home-three/\" rel=\"nofollow ugc\">Book Slider Three</a><br />\n8.<a href=\"https://99fy.thethemedemo.com/carmotors/\" rel=\"nofollow ugc\">Car &amp; Motors Slider One</a><br />\n9.<a href=\"https://99fy.thethemedemo.com/carmotors/home-two/\" rel=\"nofollow ugc\">Car &amp; Motors Slider Two</a><br />\n10.<a href=\"https://99fy.thethemedemo.com/cosmetic/\" rel=\"nofollow ugc\">Cosmetic Slider One</a><br />\n11.<a href=\"https://99fy.thethemedemo.com/cosmetic/home-two/\" rel=\"nofollow ugc\">Cosmetic Slider Two</a><br />\n12.<a href=\"https://99fy.thethemedemo.com/fashion/\" rel=\"nofollow ugc\">Fashion Slider One</a><br />\n13.<a href=\"https://99fy.thethemedemo.com/fashion/home-two/\" rel=\"nofollow ugc\">Fashion Slider Two</a><br />\n14.<a href=\"https://99fy.thethemedemo.com/fashion/home-three/\" rel=\"nofollow ugc\">Fashion Slider Three</a><br />\n15.<a href=\"https://99fy.thethemedemo.com/fashion/home-four/\" rel=\"nofollow ugc\">Fashion Slider Four</a><br />\n16.<a href=\"https://99fy.thethemedemo.com/fashion/home-five/\" rel=\"nofollow ugc\">Fashion Slider Five</a><br />\n17.<a href=\"https://99fy.thethemedemo.com/fashion/home-six/\" rel=\"nofollow ugc\">Fashion Slider Six</a><br />\n18.<a href=\"https://99fy.thethemedemo.com/fashion/home-seven/\" rel=\"nofollow ugc\">Fashion Slider Seven</a><br />\n19.<a href=\"https://99fy.thethemedemo.com/fashion/home-eight/\" rel=\"nofollow ugc\">Fashion Slider Eight</a><br />\n20.<a href=\"https://99fy.thethemedemo.com/fashion/home-nine/\" rel=\"nofollow ugc\">Fashion Slider Nine</a><br />\n21.<a href=\"https://99fy.thethemedemo.com/fashion/home-ten/\" rel=\"nofollow ugc\">Fashion Slider Ten</a><br />\n22.<a href=\"https://99fy.thethemedemo.com/fashion/home-eleven/\" rel=\"nofollow ugc\">Fashion Slider Eleven</a><br />\n23.<a href=\"https://99fy.thethemedemo.com/fashion/home-twelve/\" rel=\"nofollow ugc\">Fashion Slider Twelve</a><br />\n24.<a href=\"https://99fy.thethemedemo.com/fashion/home-thirteen/\" rel=\"nofollow ugc\">Fashion Slider Thirteen</a><br />\n25.<a href=\"https://99fy.thethemedemo.com/fashion/home-fourteen/\" rel=\"nofollow ugc\">Fashion Slider Fourteen</a><br />\n26.<a href=\"https://99fy.thethemedemo.com/fashion/home-fifteen/\" rel=\"nofollow ugc\">Fashion Slider Fifteen</a><br />\n27.<a href=\"https://99fy.thethemedemo.com/fashion/home-sixteen/\" rel=\"nofollow ugc\">Fashion Slider Sixteen</a><br />\n28.<a href=\"https://99fy.thethemedemo.com/fashion/home-seventeen/\" rel=\"nofollow ugc\">Fashion Slider Seventeen</a><br />\n29.<a href=\"https://99fy.thethemedemo.com/fashion/home-eighteen/\" rel=\"nofollow ugc\">Fashion Slider Eighteen</a><br />\n30.<a href=\"https://99fy.thethemedemo.com/fashion/home-nineteen/\" rel=\"nofollow ugc\">Fashion Slider Nineteen</a><br />\n31.<a href=\"https://99fy.thethemedemo.com/flowers/\" rel=\"nofollow ugc\">Flower Slider One</a><br />\n32.<a href=\"https://99fy.thethemedemo.com/flowers/home-2/\" rel=\"nofollow ugc\">Flower Slider Two</a><br />\n33.<a href=\"https://99fy.thethemedemo.com/food/\" rel=\"nofollow ugc\">Food Slider One</a><br />\n34.<a href=\"https://99fy.thethemedemo.com/fruits/\" rel=\"nofollow ugc\">Fruits Slider One</a><br />\n35.<a href=\"https://99fy.thethemedemo.com/fruits/home-2/\" rel=\"nofollow ugc\">Fruits Slider Two</a><br />\n36.<a href=\"https://99fy.thethemedemo.com/furniture/\" rel=\"nofollow ugc\">Furniture Slider One</a><br />\n37.<a href=\"https://99fy.thethemedemo.com/furniture/home-2/\" rel=\"nofollow ugc\">Furniture Slider Two</a><br />\n38.<a href=\"https://99fy.thethemedemo.com/furniture/home-3/\" rel=\"nofollow ugc\">Furniture Slider Three</a><br />\n39.<a href=\"https://99fy.thethemedemo.com/furniture/home-4/\" rel=\"nofollow ugc\">Furniture Slider Four</a><br />\n40.<a href=\"https://99fy.thethemedemo.com/furniture/home-5/\" rel=\"nofollow ugc\">Furniture Slider Five</a><br />\n41.<a href=\"https://99fy.thethemedemo.com/furniture/home-6/\" rel=\"nofollow ugc\">Furniture Slider Six</a><br />\n42.<a href=\"https://99fy.thethemedemo.com/furniture/home-7/\" rel=\"nofollow ugc\">Furniture Slider Seven</a><br />\n43.<a href=\"https://99fy.thethemedemo.com/furniture/home-8/\" rel=\"nofollow ugc\">Furniture Slider Eight</a><br />\n44.<a href=\"https://99fy.thethemedemo.com/furniture/home-9/\" rel=\"nofollow ugc\">Furniture Slider Nine</a><br />\n45.<a href=\"https://99fy.thethemedemo.com/furniture/home-10/\" rel=\"nofollow ugc\">Furniture Slider Ten</a><br />\n46.<a href=\"https://99fy.thethemedemo.com/electronics/\" rel=\"nofollow ugc\">Electronic Slider One</a><br />\n47.<a href=\"https://99fy.thethemedemo.com/electronics/home-2/\" rel=\"nofollow ugc\">Electronic Slider Two</a><br />\n48.<a href=\"https://99fy.thethemedemo.com/electronics/home-3/\" rel=\"nofollow ugc\">Electronic Slider Three</a><br />\n49.<a href=\"https://99fy.thethemedemo.com/electronics/home-4/\" rel=\"nofollow ugc\">Electronic Slider Four</a><br />\n50.<a href=\"https://99fy.thethemedemo.com/electronics/home-5/\" rel=\"nofollow ugc\">Electronic Slider Five</a><br />\n51.<a href=\"https://99fy.thethemedemo.com/electronics/home-6/\" rel=\"nofollow ugc\">Electronic Slider Six</a><br />\n52.<a href=\"https://99fy.thethemedemo.com/electronics/home-7/\" rel=\"nofollow ugc\">Electronic Slider Seven</a><br />\n53.<a href=\"https://99fy.thethemedemo.com/handmade/\" rel=\"nofollow ugc\">Handmade Slider One</a><br />\n54.<a href=\"https://99fy.thethemedemo.com/handmade/home-2/\" rel=\"nofollow ugc\">Handmade Slider Two</a><br />\n55.<a href=\"https://99fy.thethemedemo.com/jewelry/\" rel=\"nofollow ugc\">Jewelry Slider One</a><br />\n56.<a href=\"https://99fy.thethemedemo.com/jewelry/home-2/\" rel=\"nofollow ugc\">Jewelry Slider Two</a><br />\n57.<a href=\"https://99fy.thethemedemo.com/jewelry/home-3/\" rel=\"nofollow ugc\">Jewelry Slider Three</a><br />\n58.<a href=\"https://99fy.thethemedemo.com/jewelry/home-4/\" rel=\"nofollow ugc\">Jewelry Slider Four</a><br />\n59.<a href=\"https://99fy.thethemedemo.com/kids/\" rel=\"nofollow ugc\">Kids Slider One</a><br />\n60.<a href=\"https://99fy.thethemedemo.com/kitchen/\" rel=\"nofollow ugc\">Kitchen Slider One</a><br />\n61.<a href=\"https://99fy.thethemedemo.com/kitchen/home-2/\" rel=\"nofollow ugc\">Kitchen Slider Two</a><br />\n62.<a href=\"https://99fy.thethemedemo.com/kitchen/home-3/\" rel=\"nofollow ugc\">Kitchen Slider Three</a><br />\n63.<a href=\"https://99fy.thethemedemo.com/maternity/\" rel=\"nofollow ugc\">Maternity Slider one</a><br />\n64.<a href=\"https://99fy.thethemedemo.com/maternity/home-2/\" rel=\"nofollow ugc\">Maternity Slider Two</a><br />\n65.<a href=\"https://99fy.thethemedemo.com/matcha/\" rel=\"nofollow ugc\">Matcha Slider One</a><br />\n66.<a href=\"https://99fy.thethemedemo.com/matcha/home-2/\" rel=\"nofollow ugc\">Matcha Slider Two</a><br />\n67.<a href=\"https://99fy.thethemedemo.com/perfume/\" rel=\"nofollow ugc\">Perfume Slider One</a><br />\n68.<a href=\"https://99fy.thethemedemo.com/plantsnursery/\" rel=\"nofollow ugc\">Nursery Slider One</a><br />\n69.<a href=\"https://99fy.thethemedemo.com/healthbeauty/\" rel=\"nofollow ugc\">Health Slider One</a><br />\n70.<a href=\"https://99fy.thethemedemo.com/minimal/\" rel=\"nofollow ugc\">Minimal Slider One</a><br />\n71.<a href=\"https://99fy.thethemedemo.com/minimal/home-2/\" rel=\"nofollow ugc\">Minimal Slider Two</a><br />\n72.<a href=\"https://99fy.thethemedemo.com/minimal/home-3/\" rel=\"nofollow ugc\">Minimal Slider Three</a><br />\n73.<a href=\"https://99fy.thethemedemo.com/sports/\" rel=\"nofollow ugc\">Sports Slider One</a><br />\n74.<a href=\"https://99fy.thethemedemo.com/sports/home-two/\" rel=\"nofollow ugc\">Sports Slider Two</a><br />\n75.<a href=\"https://99fy.thethemedemo.com/sports/home-three/\" rel=\"nofollow ugc\">Sports Slider Three</a><br />\n76.<a href=\"https://99fy.thethemedemo.com/watch/\" rel=\"nofollow ugc\">Watch Slider One</a><br />\n77.<a href=\"https://99fy.thethemedemo.com/watch/home-two/\" rel=\"nofollow ugc\">Watch Slider Two</a><br />\n78.<a href=\"https://99fy.thethemedemo.com/watch/home-three/\" rel=\"nofollow ugc\">Watch Slider Three</a><br />\n79.<a href=\"https://99fy.thethemedemo.com/toolsequipment/\" rel=\"nofollow ugc\">Tools Slider One</a><br />\n80.<a href=\"https://99fy.thethemedemo.com/toolsequipment/home-2/\" rel=\"nofollow ugc\">Tools Slider Two</a></p>\n<h3>Features:</h3>\n<ul>\n<li>Create Slides using Elementors Drag n Drop Addons.</li>\n<li>Custom Styling Options</li>\n<li>Show by id and category wise.</li>\n<li>Mobile and Tablet display options.</li>\n<li>Slider Navigation and paginations custom design options.</li>\n<li>Slider Navigation on/off Option.</li>\n<li>Slider Pagination on/off Option.</li>\n<li>Slider Autoplay on/off Option.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:66:\"https://downloads.wordpress.org/plugin/ht-slider-for-elementor.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:16:\"elementor-addons\";s:16:\"elementor addons\";s:16:\"post-type-slider\";s:16:\"Post type slider\";s:6:\"slider\";s:6:\"slider\";s:7:\"widgets\";s:7:\"widgets\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/ht-slider-for-elementor/assets/icon-128x128.png?rev=2056236\";}}i:21;a:24:{s:4:\"name\";s:15:\"HT Social Share\";s:4:\"slug\";s:15:\"ht-social-share\";s:7:\"version\";s:5:\"1.0.3\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:5:\"5.5.3\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:0;s:10:\"downloaded\";i:364;s:12:\"last_updated\";s:21:\"2022-02-09 3:42am GMT\";s:5:\"added\";s:10:\"2021-01-12\";s:8:\"homepage\";s:0:\"\";s:17:\"short_description\";s:85:\"Easily enable and place the social share button in any single post or page of&hellip;\";s:11:\"description\";s:681:\"<p>HT Social Share is a splendid WordPress Plugin for users who want to enable their website visitors to share the website posts or content on social media in an easy and simple way. As a user, you can place the social share button in any single post or page within your website. You will avail of multiple options to set the social share button. For instance, you can select Post Type, Button Styles, Button Location, social media icons etc.<br />\nSo, if you are in quest of an excellent free WordPress Plugin to enable social media sharing, HT-Social Share will be second to none. Try this amazing plugin today to interact more visitors on your website through social media.</p>\n\";s:13:\"download_link\";s:58:\"https://downloads.wordpress.org/plugin/ht-social-share.zip\";s:4:\"tags\";a:5:{s:10:\"post-share\";s:10:\"post share\";s:5:\"share\";s:5:\"share\";s:6:\"social\";s:6:\"social\";s:19:\"social-share-button\";s:19:\"social share button\";s:19:\"social-share-plugin\";s:19:\"social share plugin\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/ht-social-share/assets/icon-128x128.jpg?rev=2454639\";}}i:22;a:24:{s:4:\"name\";s:49:\"Insert Headers and Footers Code &#8211; HT Script\";s:4:\"slug\";s:33:\"insert-headers-and-footers-script\";s:7:\"version\";s:5:\"1.0.7\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:2;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:2;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:1;s:15:\"active_installs\";i:2000;s:10:\"downloaded\";i:13371;s:12:\"last_updated\";s:21:\"2022-02-06 3:20am GMT\";s:5:\"added\";s:10:\"2019-06-17\";s:8:\"homepage\";s:0:\"\";s:17:\"short_description\";s:109:\"This plugin allows you to insert Google analytic code, Facebook pixel code, custom javascript, custom&hellip;\";s:11:\"description\";s:1920:\"<p>Insert Headers and Footers Code allows you to insert Google Analytics, Facebook Pixel, custom CSS, custom HTML, JavaScript code to your website header and footer without modifying your theme code.</p>\n<p>This plugin has the option to add any custom code to your theme in one place, no need to edit the theme code. It will save your time and remove the hassle for the theme update.</p>\n<p>Pro version is also available : <a href=\"https://hasthemes.com/plugins/insert-headers-and-footers-code-ht-script/\" rel=\"nofollow ugc\">Check it out now!</a></p>\n<h3>Video Documentation:</h3>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/tv4q46ZD8lA?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></span></p>\n<h3>Features:</h3>\n<ul>\n<li>Very easy to use</li>\n<li>Insert Unlimited Scripts</li>\n<li>Insert Code to header / footer</li>\n<li>Add custom CSS/js to any theme</li>\n<li>Add Google Analytics code</li>\n<li>Add Facebook Pixel code</li>\n<li>Show On Full website</li>\n<li>Show on Only Homepage (Pro)</li>\n<li>Show on Selected Pages (Pro)</li>\n<li>Show on Selected Posts (Pro)</li>\n<li>Show on Selected Categories (Pro)</li>\n<li>Show on Selected Tags (Pro)</li>\n<li>Exclude Pages (Pro)</li>\n<li>Exclude Posts (Pro)</li>\n</ul>\n<p><a href=\"https://hasthemes.com/plugins/insert-headers-and-footers-code-ht-script/\" rel=\"nofollow ugc\">Buy Pro Version</a></p>\n<p>Need Help?<br />\nIs there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:76:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers-script.zip\";s:4:\"tags\";a:5:{s:14:\"facebook-pixel\";s:14:\"Facebook Pixel\";s:16:\"google-analytics\";s:16:\"google analytics\";s:11:\"inject-code\";s:11:\"inject code\";s:11:\"inject-html\";s:11:\"inject html\";s:17:\"inject-javascript\";s:17:\"inject javascript\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:86:\"https://ps.w.org/insert-headers-and-footers-script/assets/icon-128x128.png?rev=2107203\";}}i:23;a:24:{s:4:\"name\";s:40:\"JustTables – WooCommerce Product Table\";s:4:\"slug\";s:11:\"just-tables\";s:7:\"version\";s:5:\"1.4.2\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:2;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:2;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:1;s:15:\"active_installs\";i:1000;s:10:\"downloaded\";i:9362;s:12:\"last_updated\";s:21:\"2022-05-16 4:43am GMT\";s:5:\"added\";s:10:\"2021-02-06\";s:8:\"homepage\";s:36:\"https://hasthemes.com/wp/justtables/\";s:17:\"short_description\";s:54:\"JustTables is a Product Tables plugin for WooCommerce.\";s:11:\"description\";s:8044:\"<p>JustTables is an incredible WordPress plugin that lets you showcase all your WooCommerce products in a sortable and filterable table view. It allows your customers to easily navigate through different attributes of the products and compare them on a single page. This plugin will be of great help if you are looking for an easy solution that increases the chances of landing a sale on your online store.</p>\n<p><a href=\"https://hasthemes.com/wp/justtables/\" rel=\"nofollow ugc\">Live Demo</a> | <a href=\"https://hasthemes.com/plugins/justtables-woocommerce-product-table/\" rel=\"nofollow ugc\">Purchase Pro</a></p>\n<h3>Basic Features:</h3>\n<ul>\n<li>Display WooCommerce products in a table layout.</li>\n<li>28 pre-built columns with options to enable/disable.</li>\n<li>Add custom columns with custom fields/custom taxonomies.</li>\n<li>Order table columns using drag and drop.</li>\n<li>Include products by specific taxonomies and terms.</li>\n<li>Set the number of products per page.</li>\n<li>Enable/disable table header.</li>\n<li>Enable/disable the search box.</li>\n<li>No coding knowledge is required.</li>\n</ul>\n<h3>Why should you use this plugin?</h3>\n<p>Are you running an online store using the WooCommerce plugin and wondering how you can get rid of the classic appearance of a WooCommerce store that allows displaying the products in a grid layout only?</p>\n<p>If the answer is yes, then the JustTables WordPress plugin is here to provide you with some amazing features using which you can display all your products in a tabular format. Sometimes it is tiring for the customers when the products are listed in a grid format since Product Comparison is pretty time-consuming. On the other hand, a product table layout will give your customers a more pleasant experience while purchasing from your store as they can compare different products on a single page. Moreover, it helps them make buying decisions much more quickly.</p>\n<p>JustTables plugin comes packed with many amazing features and a plethora of customization options that will give you many advantages over your competitors. From changing the table layout to keeping your desired fields in the table, almost all the elements are easily customizable. By utilizing those features, you will be able to convert the default layout of your store into a whole new user-friendly layout that results in a better user experience.</p>\n<p>If you want to display extra product information for each product within a responsive table layout then look no further than this plugin. You don’t even need any coding knowledge to operate this plugin. With the help of this plugin, you can convert your potential customer to an active buyer.</p>\n<p>So, what are you waiting for? Please give it a try now and don’t forget to let us know if you have any sort of suggestions.</p>\n<h3>Special Features:</h3>\n<ul>\n<li>Create unlimited product tables.</li>\n<li>Modern design with smart interactivity.</li>\n<li>Ajax search and pagination.</li>\n<li>Ajax instant add to cart button.</li>\n<li>100% responsive for any device.</li>\n<li>Compatible with Classic Editor, Gutenberg Editor, Elementor, Divi Page Builder, Thrive Architect, Beaver Builder, WPBakery Page Builder, Visual Composer Website Builder, King Composer, and any other available page builders or editors.</li>\n</ul>\n<h3>Premium Features:</h3>\n<p>✓ 29 pre-built columns with options to enable/disable.<br />\n✓ Include and exclude specific products.<br />\n✓ Include and exclude products by specific taxonomies and terms.<br />\n✓ Include and exclude products by specific authors/vendors.<br />\n✓ Display products by minimum and maximum price.<br />\n✓ Display products by product type.<br />\n✓ Display products by availability/stock status.<br />\n✓ Order products by all required options.<br />\n✓ Specify the product thumbnail size.<br />\n✓ Set behavior of title on click.<br />\n✓ Set behavior of thumbnail on click.<br />\n✓ Set behavior of author/vendor name on click.<br />\n✓ Set view product and author/vendor archive target.<br />\n✓ Add unlimited taxonomy filters for the end-users to filter products instantly.<br />\n✓ Enable/disable table header sorting option.<br />\n✓ Display export buttons.<br />\n✓ Design table with rich design options.</p>\n<h3>Other Projects</h3>\n<p>We have a lot of plugins and extensions that might interest you. Try out other projects by following this link:</p>\n<p><strong><a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor &#8211; WooCommerce Elementor Addons &amp; Builder</a></strong><br />\nThe WooLentor WooCommerce Page Builder Addon transforms your old-fashioned eCommerce store into a beautifully designed showroom, ready for all sorts of browsers!</p>\n<p><strong><a href=\"https://wordpress.org/plugins/swatchly/\">Swatchly &#8211; Variation Swatches for WooCommerce Products</a></strong><br />\nWooCommerce product variation’s select options can appear confusing. This plugin turns these selections into more user-friendly swatches—button swatch, color swatch and image swatch.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/whols/\">Whols &#8211; WooCommerce Wholesale Prices</a></strong><br />\nWhols is a plugin for WordPress that provides store owners with the ability to set wholesale discounts on products through their WooCommerce website.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/ever-compare/\">EverCompare &#8211; Products Compare Plugin for WooCommerce</a></strong><br />\nEver Compare is a product comparison plugin for WooCommerce stores. It will bring the best product comparisons to your store and increase the probability of converting browsers into customers.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/quickswish/\">QuickSwish &#8211; WooCommerce Product Quick View</a></strong><br />\nQuick Swish is the fastest and easiest way to offer your visitors a quick look at your products without having to leave your website.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/wishsuite/\">WishSuite &#8211; Wishlist for WooCommerce</a></strong><br />\nWishSuite is an ultimate and exclusive WooCommerce plugin that allows you to create stunning Wishlists for your WooCommerce store.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega &#8211; Absolute Addons for Elementor Page Builder</a></strong><br />\nHTMega is a absolute addons for elementor includes 84+ elements &amp; 360 Blocks with unlimited variations. HT Mega brings limitless possibilities. Embellish your site with the elements of HT Mega.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/hashbar-wp-notification-bar/\">HashBar &#8211; WordPress Notification Bar</a></strong><br />\nHashBar is a handy WordPress Notification Bar Plugin that will take your WordPress site to the next level. You can set up as many notification bars as you want and customize their content to suit your needs.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/extensions-for-cf7/\">Extensions For CF7 &#8211; Contact form 7 Database, Conditional Field and Redirection</a></strong><br />\nThe Extensions for CF7 is an excellent WordPress plugin that extends the features and functionalities of the Contact Form 7 plugin to make it more convenient and user-friendly.</p>\n<p><strong><a href=\"https://wordpress.org/plugins/wp-plugin-manager/\">WP Plugin Manager &#8211; Deactivate plugins per page</a></strong><br />\nWP Plugin Manager is a WordPress plugin that allows you to disable plugins for certain pages or posts. Sometimes you don’t need to load all the plugins for every page or post. Even if you do it drops the loading speed of your website drastically. So, you may want to disable some of the plugins for some certain pages or posts in order to make your website fast and professional as well.</p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:60:\"https://downloads.wordpress.org/plugin/just-tables.1.4.2.zip\";s:4:\"tags\";a:5:{s:10:\"justtables\";s:10:\"JustTables\";s:13:\"product-table\";s:13:\"product table\";s:11:\"woocommerce\";s:11:\"woocommerce\";s:25:\"woocommerce-product-table\";s:25:\"woocommerce product table\";s:17:\"woocommerce-table\";s:17:\"woocommerce table\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/just-tables/assets/icon-128x128.png?rev=2469966\";}}i:24;a:24:{s:4:\"name\";s:22:\"Preview Link Generator\";s:4:\"slug\";s:22:\"preview-link-generator\";s:7:\"version\";s:5:\"1.0.1\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.4\";s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:10;s:10:\"downloaded\";i:279;s:12:\"last_updated\";s:21:\"2022-02-09 3:31am GMT\";s:5:\"added\";s:10:\"2021-05-13\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:99:\"Preview Link Generator is a plugin to help you create demo/preview links for your WordPress&hellip;\";s:11:\"description\";s:1896:\"<p>Preview Link Generator is a plugin to help you create demo/preview links for your WordPress themes, plugins, HTML templates preview.</p>\n<p><a href=\"https://bootstrap.hasthemes.com/preview/buznex/\" rel=\"nofollow ugc\">Live Demo</a> | <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact Us</a></p>\n<p>To sell software products (i.e. WP themes/plugins/templates), it is badly necessary to show the live preview or demo link on the product page. Demo/preview link helps customers understand how your products work and helps a customer make the decision faster to purchase your products.</p>\n<p>Normally, the demo/preview links are hosted on a subdomain or another domain. When any customer will click on the preview link, it means that the visitor is leaving your web, which increases the bounce rate of a website. Bounce rate is the percentage of your visitors of your website who move from the site after viewing only one page. The bounce rate should be in the 26% to 40% range.</p>\n<p>So if you create a demo/preview link using our plugin, customers will be able to check the demo from your website without leaving your website.</p>\n<p>Also, as the page has the iframe content, we have added the index, nofollow meta tag, so that Web page shouldn&#8217;t be indexed/Followed by search engines, which helps your website to improve the overall SEO quality score.</p>\n<p><strong>Plugin Settings:</strong></p>\n<ul>\n<li>Custom description for meta description</li>\n<li>Iframe URL</li>\n<li>Buy Now Button Text</li>\n<li>Buy Now Button URL</li>\n<li>Back Button Text</li>\n<li>Back Button URL</li>\n<li>Slug rewrite options</li>\n<li>Favicon Uploader</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:65:\"https://downloads.wordpress.org/plugin/preview-link-generator.zip\";s:4:\"tags\";a:5:{s:4:\"demo\";s:4:\"demo\";s:6:\"envato\";s:6:\"envato\";s:14:\"link-generator\";s:14:\"link generator\";s:7:\"preview\";s:7:\"preview\";s:11:\"themeforest\";s:11:\"themeforest\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/preview-link-generator/assets/icon-128x128.png?rev=2531048\";}}i:25;a:24:{s:4:\"name\";s:49:\"QuickSwish &#8211; WooCommerce Product Quick View\";s:4:\"slug\";s:10:\"quickswish\";s:7:\"version\";s:5:\"1.0.7\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com/\">HasTheme</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:1;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:1;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:100;s:10:\"downloaded\";i:1509;s:12:\"last_updated\";s:21:\"2022-04-28 4:15am GMT\";s:5:\"added\";s:10:\"2021-04-22\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:111:\"QuickSwish is an ultimate and exclusive WooCommerce plugin that allows you to create stunning quickview&hellip;\";s:11:\"description\";s:3371:\"<p>If you are searching for an easy-to-use yet effective quick view plugin for WooCommerce to give your users the ability to have a quick look at your products, QuickSwish &#8211; WooCommerce Product Quick View is definitely here to help you. This modern WooCommerce quick view plugin introduces a simple method to look instantly at the highlights of products. Products are presented with a short description with distinctive features so that it becomes easier for online buyers to make purchasing decisions.</p>\n<p>This exclusive WooCommerce quick view plugin is bundled with tons of contemporary, intuitive, and user-friendly features in a package to add an advanced product quick view  to your site in little to no time. For example, if you want to show the quick view button on the product list page, you can do it with QuickSwish. Besides, it enables the visibility of the quick view button in mobile devices. There are different customization options for your product&#8217;s quick view, including button text, button icon, button style, popup window, etc. You can also control the look and feel of the thumbnail layout with the help of this plugin.</p>\n<p>The integration of the AJAX quick add to cart in this plugin will enhance the shopping experience by making it quick and easy for shoppers to add items right into their cart without reloading pages. In addition, this efficient quick view WooCommerce plugin gives you the ability to share products on social media.</p>\n<h3>Features</h3>\n<h4>Button Settings:</h4>\n<ul>\n<li>Enable you to show the button in product list page.</li>\n<li>Enable you to show the button in the mobile device.</li>\n<li>You can set the Shop Page Button Position.</li>\n<li>The options to customize Quickview button text, icon and style.</li>\n</ul>\n<h4>Popup Settings:</h4>\n<ul>\n<li>The options to thumbnail layout control.</li>\n<li>Shortable content manager</li>\n<li>Ajax Quick Add to cart</li>\n<li>Social share button</li>\n</ul>\n<h4>Style Settings:</h4>\n<ul>\n<li>From the style settings, you can set the Button style, popup window width etc.</li>\n</ul>\n<h4>Why Use QuickSwish &#8211; WooCommerce Product Quick View?</h4>\n<p>The Quick View is a common feature in e-commerce websites nowadays that quickly provides essential information about a product to help customers proceed easily to the purchase step. For example, it displays the price and specifications of the product to the viewers, enabling them to get a quick overview of the product they are looking for. With a sophisticated product quick view button, the online buyers can remain more focused on what they actually want as they don&#8217;t have to open the products in a new tab. The role of an ideal Product quick view on your e-commerce site is significant in terms of improving customer experience, increasing site ranking, or reducing the bounce rate. Therefore QuickSwish &#8211; WooCommerce Product Quick View comes into play as your perfect assistant in including excellent quick view functionality within your WooCommerce site. It means that you can offer more convenience for anyone who comes to your site and browses the products you offer!</p>\n<p>Try this highly customizable and feature-rich WooCommerce product quick view plugin today to grab more attention of your potential customers, empowering them to browse your products with more ease and comfort.</p>\n\";s:13:\"download_link\";s:53:\"https://downloads.wordpress.org/plugin/quickswish.zip\";s:4:\"tags\";a:5:{s:13:\"product-popup\";s:13:\"product popup\";s:18:\"product-quick-view\";s:18:\"product quick view\";s:10:\"quick-view\";s:10:\"quick view\";s:11:\"woocommerce\";s:11:\"woocommerce\";s:22:\"woocommerce-quick-view\";s:22:\"woocommerce quick view\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/quickswish/assets/icon-128x128.jpg?rev=2519509\";s:2:\"2x\";s:63:\"https://ps.w.org/quickswish/assets/icon-256x256.jpg?rev=2519509\";}}i:26;a:24:{s:4:\"name\";s:32:\"Really Simple Google Tag Manager\";s:4:\"slug\";s:32:\"really-simple-google-tag-manager\";s:7:\"version\";s:5:\"1.0.3\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:1000;s:10:\"downloaded\";i:2048;s:12:\"last_updated\";s:21:\"2022-02-09 3:35am GMT\";s:5:\"added\";s:10:\"2020-12-15\";s:8:\"homepage\";s:0:\"\";s:17:\"short_description\";s:62:\"Easily Enables Google Tag Manager on all pages of any Website.\";s:11:\"description\";s:825:\"<p>Google Tag Manager is a tag management system (TMS) that allows us to easily update marketing tag snippets/codes/tracking pixel on a website. It helps to manage website tags without editing code of a themes.</p>\n<p>Manager gives you the ability to add and update your own tags for conversion tracking, site analytics, remarketing, and more. There are nearly endless ways to track activity across your sites and apps, and the intuitive design lets you change tags whenever you want. It helps to deploy Google and third-party tags easily.</p>\n<p>Reallly Simple Google Tag Manager WordPress plugin is developed by <a href=\"https://hasthemes.com/\" rel=\"nofollow ugc\">HasThemes</a> team to add the Google Tag Manager Script to a theme code without touching any code. It makes easier to enable or disable the tracking code.</p>\n\";s:13:\"download_link\";s:75:\"https://downloads.wordpress.org/plugin/really-simple-google-tag-manager.zip\";s:4:\"tags\";a:5:{s:6:\"google\";s:6:\"google\";s:18:\"google-tag-manager\";s:18:\"google tag manager\";s:9:\"googletag\";s:9:\"googletag\";s:32:\"really-simple-google-tag-manager\";s:32:\"really simple google tag manager\";s:10:\"tagmanager\";s:10:\"tagmanager\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://ps.w.org/really-simple-google-tag-manager/assets/icon-128x128.png?rev=2439494\";s:2:\"2x\";s:85:\"https://ps.w.org/really-simple-google-tag-manager/assets/icon-256x256.png?rev=2439494\";}}i:27;a:24:{s:4:\"name\";s:38:\"Sirve &#8211; Simple Directory Listing\";s:4:\"slug\";s:5:\"sirve\";s:7:\"version\";s:5:\"1.0.4\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:0;s:10:\"downloaded\";i:193;s:12:\"last_updated\";s:21:\"2022-04-21 8:25am GMT\";s:5:\"added\";s:10:\"2021-11-30\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:112:\"Create listings of services or products smoothly with tons of customization options. Manage your product&hellip;\";s:11:\"description\";s:3689:\"<p>Sirve – WordPress Listing Plugin</p>\n<p>Sirve is a handy WordPress listing plugin that allows you to create your own service listing in a professional way on your website. It can come in real handy in terms of creating listings of services or products and is well-suited for service providers, products, or any other type of product/service that needs to be marketed and sold. It&#8217;s convenient and easy to use!</p>\n<p>With Sirve, it only takes just a while to set up an eye-catching service or product listings page through the tons of intuitive and user-friendly features it provides. Here you will get 4 archive page styles. This listing plugin for WordPress has a pagination option and AJAX features to make your site&#8217;s navigation easier. You can choose whether or not you want the post detail/page details to appear, simply by enabling or disabling Post detail Page /detail options. The shortcode can be inserted in the post editor as well, so that&#8217;s another option for you.</p>\n<p>With the Sirve listing WordPress plugin, you can make your posts sticky. This is useful for when you want a particular post to feature first, giving it more visibility since putting one specific piece of post on top of others gives it extra exposure.</p>\n<p>On top of that, Sirve provides you with an intuitive settings panel. Therefore you can manage a lot of things such as selecting the number of words you want to show in the grid, the number of lists on a page, etc. Besides, you can choose whether to show your list in ascending or descending order and also choose whether your post order is to be shown based on various attributes like ID, title, date, random order, etc.</p>\n<p>Sirve contains two buttons and it gives you complete control over the look and feel of your listing pages, allowing you to change the text color, hover color, background color, background header color, border color, and other aspects of the buttons.</p>\n<p>So, in a word, if you&#8217;re looking for a simple yet user-friendly plugin that will adorn your listing page, look no further than this great option.</p>\n<h3>Features</h3>\n<ul>\n<li>Fast loading speed.</li>\n<li>Ajax Search and pagination Options.</li>\n<li>Enable / Disable Post Detail Page Options.</li>\n<li>Shortcode insertion option from the post editor. </li>\n<li>Post Sticky Options.</li>\n<li>Intuitive settings panel.</li>\n<li>Single listings Style</li>\n<li>4 Archive Page styles.</li>\n<li>Support gutenberg editor.</li>\n</ul>\n<h3>Available Shortcodes</h3>\n<p>Have a look at the shortcodes by which you can use various features this WordPress listing plugin offers:</p>\n<p><strong>To Show Single listing</strong></p>\n<pre>[sirve id=\"sirve Post ID\"]</pre>\n<p><strong>To Show Archive Page</strong></p>\n<pre>[sirve_page]</pre>\n<p><strong>The common structure of the shortcode</strong></p>\n<pre>[sirve_page order=\"DESC, ASC\" orderby=\"ID, title, date, modified, parent, rand\"]</pre>\n<p>sirve_page order – Indicates whether the &#8216;orderby&#8217; parameter should be in ascending or descending order.</p>\n<ul>\n<li>ASC- Indicates the order from lowest to highest value.</li>\n<li>DESC- Indicates the order from highest to the lowest value. </li>\n</ul>\n<p>orderby: Order the results by various parameters. Those parameters are:</p>\n<ul>\n<li>title: Use this parameter to order results by title. </li>\n<li>ID: Use it to order the results by post ID.</li>\n<li>date: This parameter is to be used to order the results by date. </li>\n<li>modified: Use it if you want to order the results by last modified date. </li>\n<li>parent: Use this parameter to order results by parent ID.</li>\n<li>rand: Use this parameter for random order.</li>\n</ul>\n\";s:13:\"download_link\";s:48:\"https://downloads.wordpress.org/plugin/sirve.zip\";s:4:\"tags\";a:5:{s:8:\"listings\";s:8:\"listings\";s:7:\"reviews\";s:7:\"reviews\";s:7:\"service\";s:7:\"service\";s:5:\"sirve\";s:5:\"sirve\";s:11:\"wp-listings\";s:11:\"wp listings\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/sirve/assets/icon-128x128.png?rev=2637346\";s:2:\"2x\";s:58:\"https://ps.w.org/sirve/assets/icon-256x256.png?rev=2637346\";}}i:28;a:24:{s:4:\"name\";s:60:\"Swatchly &#8211; Variation Swatches for WooCommerce Products\";s:4:\"slug\";s:8:\"swatchly\";s:7:\"version\";s:5:\"1.1.4\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.4\";s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:6;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:6;s:15:\"support_threads\";i:4;s:24:\"support_threads_resolved\";i:3;s:15:\"active_installs\";i:3000;s:10:\"downloaded\";i:14780;s:12:\"last_updated\";s:21:\"2022-04-28 9:46am GMT\";s:5:\"added\";s:10:\"2021-06-10\";s:8:\"homepage\";s:42:\"https://plugindemo.hasthemes.com/swatchly/\";s:17:\"short_description\";s:52:\"Product Variation Swatches For WooCommerce Products.\";s:11:\"description\";s:5472:\"<p>Are you getting frustrated with WooCommerce’s current way of presenting the product attributes for your products? Well, This plugin allows you to turn the WooCommerce product variation&#8217;s select options into more user-friendly swatches. Such as color swatch, button swatch &amp; image swatch. That means you no longer need to rely on the default dropdown options when it comes to selecting product variations. With the help of this plugin, the customers will have the opportunity to observe the products they need more visually than the default dropdown options shown in WooCommerce.</p>\n<p>This exceptional WordPress plugin is designed for all store owners that want their customers to find what they’re searching for quickly. Get rid of dropdown type determination and go with one that rocks!</p>\n<p><a href=\"https://theplugindemo.com/swatchly/\" rel=\"nofollow ugc\">Live Demo</a> | <a href=\"https://theplugindemo.com/swatchly/documentation/\" rel=\"nofollow ugc\">Documentation</a> | <a href=\"https://hasthemes.com/plugins/swatchly-product-variation-swatches-for-woocommerce-products/\" rel=\"nofollow ugc\">Purchase Pro</a> | <a href=\"https://hasthemes.com/contact-us\" rel=\"nofollow ugc\">Support</a></p>\n<h3>Main Features:</h3>\n<ol>\n<li>Enable Swatches for Shop / Product List / Product details pages</li>\n<li>3 different Swatch types (label, color, image)</li>\n<li>Supports multi-colored Swatch</li>\n<li>3 different Swatch Shapes Style (Squared, Rounded, Circle)</li>\n<li>Swatches Alignment (Left, Center, Right)</li>\n<li>Auto convert variation dropdowns to label/button type Swatch</li>\n<li>Set Swatch width, height &amp; font size</li>\n<li>Define global settings for single product / product list page separately</li>\n<li>Override Swatch settings for each product individually</li>\n<li>Option to reset individual product swatch settings into default</li>\n<li>Disabled Attribute Type (Cross Sign, Blur with Cross, Blur Only, Hide)</li>\n<li>Enable/Disable tooltip</li>\n<li>2 different tooltip types (text, image)</li>\n<li>Option to change tooltip image size</li>\n<li>Option to change default Ajax variation threshold</li>\n<li>Swatch Preview Column for Admin</li>\n<li>Enable/Disable Shape inset</li>\n<li>Shape Inset size</li>\n<li>Deselect On Click</li>\n<li>Show selected option name on single product page</li>\n<li>Set image size for image type swatches</li>\n<li>Variation Label Separator</li>\n<li>Responsive for mobile device</li>\n<li>Shortcode support</li>\n<li>Support Quick View</li>\n<li>Ordering support for the swatches</li>\n</ol>\n<h3>Shop Page Features</h3>\n<ol>\n<li>Enable/Disable Swatches for Shop page</li>\n<li>Control Swatches Position (Before Title, After Title, Before Price, After Price, Before Cart, After Cart)</li>\n<li>Swatches can be positioned into a custom hook</li>\n<li>Shortcode support</li>\n<li>Product Thumbnail Selector</li>\n<li>Enable Ajax Add to Cart button for shop page</li>\n<li>Show/Hide Clear Link for shop page</li>\n<li>Show/Hide Swatches label for shop page</li>\n</ol>\n<h3>Design options for Swatch</h3>\n<ol>\n<li>Swatch Text Color</li>\n<li>Swatch Text Font Size</li>\n<li>Swatch Text Line Height</li>\n<li>Swatch Background Color</li>\n<li>Swatch Border Size</li>\n<li>Swatch Border Color</li>\n<li>Swatch Border Type</li>\n<li>Swatch Item Margin</li>\n<li>Swatch Item Padding</li>\n<li>Swatches Wrapper Margin</li>\n<li>Swatches Wrapper Padding</li>\n</ol>\n<h3>Design options for Tooltip</h3>\n<ol>\n<li>Tooltip Width</li>\n<li>Tooltip Maximum Width</li>\n<li>Tooltip Background Color</li>\n<li>Tooltip Border Size</li>\n<li>Tooltip Border Color</li>\n<li>Tooltip Border Type</li>\n<li>Tooltip Spacing</li>\n<li>Tooltip Text Color</li>\n<li>Tooltip Text Font Size</li>\n<li>Tooltip Text Line Height</li>\n<li>Tooltip Text Padding</li>\n<li>Tooltip Arrow Color</li>\n<li>Tooltip Arrow Size</li>\n<li>Tooltip Arrow Spacing</li>\n<li>Tooltip Image Border Size</li>\n<li>Tooltip Image Border Color</li>\n</ol>\n<h3>Premium Features</h3>\n<ol>\n<li>Auto convert variation dropdowns to image Swatch</li>\n<li>Auto convert variation dropdowns to image Swatch for idividual product</li>\n<li>Disable showing Out of Stock variation from Swatch items</li>\n<li>Option to select an attribute as a special/featured attribute</li>\n<li>Enable catalog mode, both (global / custom) attribute support</li>\n<li>Ajax Add to Cart feature for Shop page</li>\n<li>Custom Add to Cart Text</li>\n<li>Enable/Disable Swatch Limit for shop page</li>\n<li>Number of Swatch to Show</li>\n<li>Option to add PHP condition to enable/disable swatches for the product listing pages</li>\n</ol>\n<h3><a href=\"https://hasthemes.com/plugins/swatchly-product-variation-swatches-for-woocommerce-products/\" rel=\"nofollow ugc\">Purchase Swatchly Pro</a></h3>\n<h3>Video Tutorial:</h3>\n<h4>How to Configure Swatches For Variable Products</h4>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/ZTpV8JFugbc?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></span>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:51:\"https://downloads.wordpress.org/plugin/swatchly.zip\";s:4:\"tags\";a:5:{s:12:\"color-swatch\";s:12:\"color swatch\";s:18:\"product-attributes\";s:18:\"product attributes\";s:18:\"variation-swatches\";s:18:\"variation swatches\";s:22:\"woocommerce-attributes\";s:22:\"woocommerce attributes\";s:21:\"woocommerce-variation\";s:21:\"woocommerce variation\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/swatchly/assets/icon-128x128.png?rev=2545598\";s:2:\"2x\";s:61:\"https://ps.w.org/swatchly/assets/icon-256x256.png?rev=2545598\";}}i:29;a:24:{s:4:\"name\";s:56:\"WC Builder &#8211; WooCommerce Page Builder for WPBakery\";s:4:\"slug\";s:10:\"wc-builder\";s:7:\"version\";s:6:\"1.0.17\";s:6:\"author\";s:44:\"<a href=\"http://hasthemes.com\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:5:\"5.2.4\";s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:3;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:1;}s:11:\"num_ratings\";i:4;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:1000;s:10:\"downloaded\";i:28496;s:12:\"last_updated\";s:21:\"2022-02-06 3:17am GMT\";s:5:\"added\";s:10:\"2019-07-13\";s:8:\"homepage\";s:20:\"http://hasthemes.com\";s:17:\"short_description\";s:110:\"This plugin provides a full set of easy-to-use and customizable WooCommerce shortcodes as Page builder&hellip;\";s:11:\"description\";s:2503:\"<p>WC Builder is a WooCommerce Addons for WPBakery Page Builder. WC Builder is included in this plugin to build a custom product page and archive page.</p>\n<p><a href=\"https://demo.hasthemes.com/plugins/wc-builder/wc-builder-prebuild-templates.zip\" rel=\"nofollow ugc\">Download Pre-build Templates for WC Builder Free and Pro</a></p>\n<h3>WC Builder Includes</h3>\n<ul>\n<li>WooCommerce Template Builder (Basic)</li>\n<li>Option to select single product layout.</li>\n<li>Option to select an archive page template.</li>\n<li>Option to build an unlimited custom design for WooCommerce pages.</li>\n<li>15+ Addons</li>\n<li>Rename Label</li>\n<li>Ajax add to Cart for Single Product</li>\n<li>Redirect to &#8220;Checkout Page&#8221; after &#8220;Add to Cart&#8221; features</li>\n<li>Unlimited Color and Font Variations.</li>\n</ul>\n<h3>WC Builder Pro Features</h3>\n<ul>\n<li>Cart Page Builder</li>\n<li>Checkout Page Builder</li>\n<li>Thank You Page Builder</li>\n<li>MyAccount Page Builder</li>\n<li>Category Specific Layout Builder</li>\n<li>Individual Product Layout Builder</li>\n<li>Rename labels (Includes all)</li>\n<li>Sticky Add to Cart for Product Details page</li>\n<li>Sidebar / Side / Floating Cart for Product Details page</li>\n<li>34+ Addons</li>\n</ul>\n<p><a href=\"https://hasthemes.com/plugins/wc-builder-woocoomerce-page-builder-for-wpbakery/#pricing\" rel=\"nofollow ugc\">PURCHASE WC BUILDER PRO FROM OUR WEBSITE</a></p>\n<h3>VIDEO TUTORIALS:</h3>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/BjZu-6YBql4?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></span></p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n<blockquote><p>\n  WooLentor – WooCommerce Elementor Addons + Builder</p>\n<p>Don&#8217;t forgate to check our WooLentor – WooCommerce Elementor Addons + Builder<br />\n  <a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor – WooCommerce Elementor Addons + Builder</a><br />\n  Includes 42 product styles and WooCommerce Page builder</p>\n</blockquote>\n\";s:13:\"download_link\";s:53:\"https://downloads.wordpress.org/plugin/wc-builder.zip\";s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:10:\"wc-builder\";s:10:\"WC Builder\";s:11:\"woocommerce\";s:11:\"woocommerce\";s:19:\"woocommerce-builder\";s:19:\"WooCommerce Builder\";s:8:\"wpbakery\";s:8:\"WPBakery\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/wc-builder/assets/icon-128x128.png?rev=2167426\";}}i:30;a:24:{s:4:\"name\";s:21:\"WC Sales Notification\";s:4:\"slug\";s:21:\"wc-sales-notification\";s:7:\"version\";s:5:\"1.2.0\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:1;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:1;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:60;s:10:\"downloaded\";i:1491;s:12:\"last_updated\";s:21:\"2021-10-05 5:13am GMT\";s:5:\"added\";s:10:\"2019-10-07\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:94:\"WC Sales Notification is a plugin for Showing your orders or fake notification on your&hellip;\";s:11:\"description\";s:2008:\"<p>WC Sales Notification is a plugin for Showing your orders or fake notification on your website. You can show the notification all pages in your website. It gives you awesome features, is to generate for fake notifications. The plugin Has Wonderful customization option and incoming and outgoing animation options.</p>\n<p>You can see the plugin demo here : <a href=\"https://woolentor.com/\" rel=\"nofollow ugc\">Live Demo</a></p>\n<h3>Features:</h3>\n<ul>\n<li>Real sales notification</li>\n<li>Notification limit</li>\n<li>Single Blog Page Builder</li>\n<li>Notification loading time</li>\n<li>Real sales notification</li>\n<li>Notification limit</li>\n<li>Notification loading time</li>\n<li>Manual notification</li>\n<li>Notification showing position</li>\n<li>Notification image position</li>\n<li>Time interval each notification</li>\n<li>Sales upto date option</li>\n<li>Incoming animation option</li>\n<li>Outgoing animation option</li>\n<li>Background color option</li>\n<li>Heading color option</li>\n<li>Content color option</li>\n<li>Cross icon color option</li>\n</ul>\n<h3>Absolute Addons for Elementor Page Builder</h3>\n<blockquote>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Absolute Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>WooLentor – WooCommerce Elementor Addons + Builder</h3>\n<blockquote>\n<p>Don&#8217;t forgete to check our WooCommerce Page Builder for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor – WooCommerce Elementor Addons + Builder</a><br />\n  Includes 42 Product Layout Options &amp; 41 Elementor Addons.</p>\n</blockquote>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:64:\"https://downloads.wordpress.org/plugin/wc-sales-notification.zip\";s:4:\"tags\";a:5:{s:19:\"custom-notification\";s:19:\"Custom Notification\";s:19:\"manual-notification\";s:19:\"Manual notification\";s:18:\"popup-notification\";s:18:\"Popup Notification\";s:17:\"sale-notification\";s:17:\"sale notification\";s:11:\"woocommerce\";s:11:\"woocommerce\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/wc-sales-notification/assets/icon-128x128.png?rev=2169175\";}}i:31;a:24:{s:4:\"name\";s:42:\"Whols &#8211; WooCommerce Wholesale Prices\";s:4:\"slug\";s:5:\"whols\";s:7:\"version\";s:5:\"1.1.7\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.4\";s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:4;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:4;s:15:\"support_threads\";i:5;s:24:\"support_threads_resolved\";i:3;s:15:\"active_installs\";i:800;s:10:\"downloaded\";i:6083;s:12:\"last_updated\";s:21:\"2022-05-09 8:18am GMT\";s:5:\"added\";s:10:\"2021-02-13\";s:8:\"homepage\";s:56:\"https://plugins.hasthemes.com/whols/demo/create-sandbox/\";s:17:\"short_description\";s:97:\"This plugin provides all the necessary features that you will ever need to sell wholesale&hellip;\";s:11:\"description\";s:7724:\"<p>Whols is an outstanding WordPress plugin for WooCommerce that allows store owners to set wholesale prices for the products of their online stores. This plugin enables you to show special wholesale prices to the wholesaler. Users can easily request to become a wholesale customer by filling out a simple online registration form. Once the registration is complete, the owner of the store will be able to review the request and approve the request either manually or automatically.</p>\n<p>Whols plugin reduces the hassle to create multiple stores for both the consumers and the wholesalers. By utilizing the functionality of this amazing plugin, you can easily maintain both the consumers and the wholesalers from a single store.</p>\n<p><a href=\"https://theplugindemo.com/whols/demo/create-sandbox/\" rel=\"nofollow ugc\">Live Demo</a> | <a href=\"https://theplugindemo.com/whols/doc/free/\" rel=\"nofollow ugc\">Documentation</a> | <a href=\"https://hasthemes.com/plugins/whols-woocommerce-wholesale-prices/\" rel=\"nofollow ugc\">Purchase Pro</a></p>\n<h3>Main Features:</h3>\n<ul>\n<li>Wholesaler registration form shortcode</li>\n<li>Ability to add custom / additional field into the registration form using filter hook (new)</li>\n<li>Customer can request to become a wholesale customer</li>\n<li>Admin can manage the wholesaler request manually OR Auto approve can be set</li>\n<li>Asign wholesale role for existing customers</li>\n<li>Apply wholesale prices globally</li>\n<li>Add flat/percent amount price on wholesale products</li>\n<li>Easily set wholesale prices on Simple or Variable products</li>\n<li>Add wholesale prices to each variation of a variable products</li>\n<li>Option to enable minimum product to buy</li>\n<li>Shows wholesale pricing info on shop page as well as product detail page</li>\n<li>Show/Hide the retailer price from wholesale customers</li>\n<li>Customers having wholesale role assigned can buy products at wholesale price</li>\n<li>Customize the text on the frontend labels (Retailer Price Text, Wholesaler Price Text &amp; Save Amount Text Label)</li>\n<li>Display the amount that the customer will save after purchase</li>\n<li>Allow free shipping for wholesalers</li>\n<li>Disable coupon codes for wholesale customers so only retailers can use them</li>\n<li>Hide wholesale prices for guest user</li>\n<li>Hide &#8220;Wholesale Only&#8221; Products From Other Customers</li>\n<li>Hide General Products From Wholesalers</li>\n<li>Wholesale prices are only visible to customers with “Wholesaler” role</li>\n<li>Registration successful message customization</li>\n<li>Redirect to specific page after completed registration</li>\n<li>Redirect to specific page when customer login as a wholesaler</li>\n<li>Hide price for guest users (Login to see price)</li>\n<li>Email Notification (Registration)</li>\n<li>Design Customizations</li>\n<li>Exclude Tax for Wholesale users</li>\n<li>Easy to use backend interface</li>\n<li>No coding required</li>\n</ul>\n<h3>Premium Features:</h3>\n<p>✓ Create &amp; manage unlimited user role<br />\n✓ Wholesaler request management (Approve / Reject)<br />\n✓ Give different pricing to different wholesaler role<br />\n✓ Payment methods (gateway) control<br />\n✓ Different prices for different users<br />\n✓ Category wise product price set<br />\n✓ Category wise product price set for different roles<br />\n✓ Restrict wholesale store access<br />\n✓ Set default wholesaler role for wholesale registration<br />\n✓ Enable website access restriction (Entire Website / Only Shop)<br />\n✓ Whole can access the Entire Website / Shop (Loged In Users/Loged In Users With Wholesale Role)<br />\n✓ Role wise disable payment method<br />\n✓ Role wise enable free shipping<br />\n✓ Email Notification (Registration, Wholesaler Approve &amp; Rejection)</p>\n<h3><a href=\"https://hasthemes.com/plugins/whols-woocommerce-wholesale-prices/\" rel=\"nofollow ugc\">Purchase Whols Pro</a></h3>\n<h3>Video Overview:</h3>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/OArnKMljqWs?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></span>\n<h3>Video Tutorial:</h3>\n<h4>How to install Whols plugin and complete the basic setup</h4>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/4tUrWsNz3TE?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></span>\n<h4>How to add a wholesaler registration form &amp; approve role for wholesaler</h4>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/8eI5k3xgok4?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></span>\n<h4>How to set wholesale prices for different categories</h4>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/inzemTs1SCY?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></span>\n<h4>How to hide wholesale prices for guest users</h4>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/aywuQpKFdF4?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></span>\n<h4>How to Enable Free Shipping For Wholesale Customers</h4>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/e4P9nCNGDJQ?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></span>\n<h4>How To Set Different Price For Different Wholesale Customers</h4>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/cDw4GGuHYyw?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></span>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:48:\"https://downloads.wordpress.org/plugin/whols.zip\";s:4:\"tags\";a:5:{s:16:\"wholesale-plugin\";s:16:\"wholesale plugin\";s:16:\"wholesale-prices\";s:16:\"wholesale prices\";s:17:\"wholesale-pricing\";s:17:\"wholesale pricing\";s:15:\"woocommerce-b2b\";s:15:\"woocommerce b2b\";s:21:\"woocommerce-wholesale\";s:21:\"woocommerce wholesale\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:58:\"https://ps.w.org/whols/assets/icon-128x128.jpg?rev=2474176\";}}i:32;a:24:{s:4:\"name\";s:42:\"WishSuite &#8211; Wishlist for WooCommerce\";s:4:\"slug\";s:9:\"wishsuite\";s:7:\"version\";s:5:\"1.2.8\";s:6:\"author\";s:45:\"<a href=\"https://hasthemes.com/\">HasTheme</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:7;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:7;s:15:\"support_threads\";i:6;s:24:\"support_threads_resolved\";i:6;s:15:\"active_installs\";i:1000;s:10:\"downloaded\";i:15534;s:12:\"last_updated\";s:21:\"2022-05-07 9:10am GMT\";s:5:\"added\";s:10:\"2021-02-17\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:110:\"WishSuite is an ultimate and exclusive WooCommerce plugin that allows you to create stunning Wishlists&hellip;\";s:11:\"description\";s:5742:\"<p>WishSuite is an ultimate and exclusive WooCommerce plugin that allows you to create stunning Wishlists for your WooCommerce store. By using this handy Wishlist plugin, adding a Wishlist will be super easy and straightforward.</p>\n<p>The Wishlist is an indispensable part of e-commerce sites nowadays that enables the customers to create customized collections of items that they desire to purchase and save those items in their user account for further use in the future.</p>\n<p>Adding an excellent Wishlist is essential and vital since it plays a significant role in improving the overall user experience. It benefits both you and your customers in multiple ways as in reality, it is used as a middle ground between purchasing and forgetting items. So, even though a customer doesn’t buy a product instantly, the Wishlist helps him/her remember the product or store for future reference. Therefore, it increases the possibility of your shoppers’ return visits to your site and boosts your revenue. By integrating a Wishlist with such a modern WooCommerce plugin like WishSuite, you can also reduce the number of users who get lost on their way to checkout and therefore expand your customer base.</p>\n<p>WishSuite comes packed with various useful settings that modern and standard Wishlist plugins have. You will get options to modify the button, table, or style. All the nifty features available in this plugin will help you deploy an impressive Wishlist on your WooCommerce site that can bring forth a positive outcome by increasing the amount of your traffic, conversion, and sales.</p>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/E8iTtXZZrqI?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></span>\n<h3>Features</h3>\n<ul>\n<li>Select the Wishlist Page</li>\n<li>Add custom Name for Wishlist Page. </li>\n<li>Remove the products from the Wishlist after adding them to the cart.</li>\n<li>Show Wishlist Table in any page of your website. </li>\n<li>Set Position of “wishlist” button on product page and catalogue (after/before Cart button/Price etc.)</li>\n<li>Add Wishlist button to anywhere of a page using Shortcode. </li>\n<li>Show/Hide Columns in the the Wishlist Table. </li>\n<li>Wishlist Share on social Media (Facebook, Twitter, Pinterest, Linkedin, WhatsApp, email, Reddit, Telegram, Odnoklassniki, VK)</li>\n</ul>\n<h4>Button Settings:</h4>\n<ul>\n<li>Enables you to show the button in Product List and Product Page.</li>\n<li>You can set the Shop Page Button Position and the Product Page Button Position.</li>\n<li>The options to customize Wishlist button text, Wishlist Added Button Text, and Wishlist Existing Button Text are also available.</li>\n</ul>\n<h4>Table Settings:</h4>\n<ul>\n<li>Enables you to select a Wishlist page for the Wishlist table. You can place the Wishlist Product table on any page you want, such as Homepage, My Account Page, Checkout Page, Cart Page, Shop Page.</li>\n<li>You can add the functionality so that shoppers can easily remove the products from the Wishlist after adding them to the cart.</li>\n<li>You can also show various fields in the table such as Remove, Image, Title, Price, Quantity, etc.</li>\n<li>The options to set Fields Heading Text, Empty Table Text, Image Size are available.</li>\n</ul>\n<h4>Style Settings:</h4>\n<ul>\n<li>From the style settings, you can set the Button style, Button Icon Type, Added Button Icon Type, Table Style, etc.</li>\n</ul>\n<p>If you a WordPress theme or plugin developer, you can watch this video on &#8220;How to integrate WishSuite WooCommerce Wishlist Plugin in your WordPress WooCommerce theme.&#8221;<br />\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/RGksqQn2YBk?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></span></p>\n<h3>Available Shortcodes</h3>\n<p><strong>Display Number of item(s) in wishlist using </strong></p>\n<pre>[wishsuite_counter]</pre>\n<p><strong>Showcase wishlist item(s) in a table using</strong></p>\n<pre>[wishsuite_table]</pre>\n<h3>Other Projects:</h3>\n<p>We have a lot of plugins and extensions that might interest you. Try out other projects by following this link:</p>\n<h4><a href=\"https://wordpress.org/plugins/ever-compare/\">EverCompare</a></h4>\n<p>Ever Compare is a product comparison plugin for WooCommerce stores. It will bring the best product comparisons to your store and increase the probability of converting browsers into customers.</p>\n<h4><a href=\"https://wordpress.org/plugins/quickswish/\">QuickSwish</a></h4>\n<p>Quick Swish is the fastest and easiest way to offer your visitors a quick look at your products without having to leave your website.</p>\n<h4><a href=\"https://wordpress.org/plugins/just-tables/\">JustTables</a></h4>\n<p>Superior WooCommerce layout plugin that uses a simple table to display all listings. Search by attribute and sort based on priority or rating in just two clicks.</p>\n<h4><a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor</a></h4>\n<p>The WooLentor WooCommerce Page Builder Addon transforms your old-fashioned eCommerce store into a beautifully designed showroom, ready for all sorts of browsers!</p>\n\";s:13:\"download_link\";s:52:\"https://downloads.wordpress.org/plugin/wishsuite.zip\";s:4:\"tags\";a:5:{s:16:\"product-wishlist\";s:16:\"product wishlist\";s:8:\"wishlist\";s:8:\"Wishlist\";s:9:\"wishsuite\";s:9:\"wishsuite\";s:11:\"woocommerce\";s:11:\"woocommerce\";s:20:\"woocommerce-wishlist\";s:20:\"woocommerce wishlist\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/wishsuite/assets/icon-128x128.jpg?rev=2476172\";}}i:33;a:24:{s:4:\"name\";s:56:\"WooLentor &#8211; WooCommerce Elementor Addons + Builder\";s:4:\"slug\";s:16:\"woolentor-addons\";s:7:\"version\";s:5:\"2.2.8\";s:6:\"author\";s:68:\"<a href=\"https://hasthemes.com/plugins/woolentor-pro/\">HasThemes</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/devitemsllc/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:84;s:7:\"ratings\";a:5:{i:5;i:89;i:4;i:4;i:3;i:5;i:2;i:3;i:1;i:19;}s:11:\"num_ratings\";i:120;s:15:\"support_threads\";i:23;s:24:\"support_threads_resolved\";i:18;s:15:\"active_installs\";i:80000;s:10:\"downloaded\";i:1510486;s:12:\"last_updated\";s:21:\"2022-05-15 8:37am GMT\";s:5:\"added\";s:10:\"2018-08-09\";s:8:\"homepage\";s:22:\"https://woolentor.com/\";s:17:\"short_description\";s:128:\"All-in-one solution to enhance your WooCommerce website including WooCommerce Elementor Addons, splendid features, and a&hellip;\";s:11:\"description\";s:32428:\"<p>Have you ever searched for a WooCommerce Addons plugin for Elementor Page Builder to build an online store that does not look ordinary like most of the stores out there? WooLentor is an all-in-one solution that will not only give you complete control over the WooCommerce page designs but also provide you with several features.</p>\n<p>The plugin comes with a powerful WooCommerce page builder, allowing you to effortlessly design all WooCommerce pages from scratch using the Elementor page builder. As a result, you no longer have to rely on the default page designs of WooCommerce.</p>\n<p>WooLentor gives you the flexibility to design a custom Shop and Product details page using the free version of the plugin. The rest of the pages are also customizable with the pro version. Furthermore, WooLentor offers a plethora of Elementor widgets with extensive customization options that you can leverage for creating your store as per your needs.</p>\n<p>Apart from a large number of widgets, there are plenty of useful functionalities available in the form of modules. For example, product comparison, wishlist, quick view, Shopify style checkout, flash sale countdown, and so on. The main purpose of these modules is to offer the users as many options as users would need to enhance their website further. That way, they don&#8217;t have to look for another third-party plugin just for a single feature.</p>\n<p><a href=\"https://woolentor.com/?utm_source=wprepo&amp;utm_medium=freeplugin&amp;utm_campaign=demo\" rel=\"nofollow ugc\">Live Demo</a> | <a href=\"https://woolentor.com/documentation/?utm_source=wprepo&amp;utm_medium=freeplugin&amp;utm_campaign=doc\" rel=\"nofollow ugc\">Documentation</a> | <a href=\"https://woolentor.com/pricing/?utm_source=wprepo&amp;utm_medium=freeplugin&amp;utm_campaign=purchasepro\" rel=\"nofollow ugc\">Purchase Pro</a></p>\n<h3>WooCommerce Builder Includes</h3>\n<p>?️ Single Product page builder.<br />\n?️ Custom Product Template Builder for Individual Product(Pro).<br />\n?️ Shop / Archive page builder.<br />\n?️ Individual Archive Page Builder (pro).<br />\n?️ Cart / Checkout / My account / Thankyou page builder (Pro)</p>\n<p>You can see the plugin demo here : <a href=\"https://woolentor.com/?utm_source=wprepo&amp;utm_medium=freeplugin&amp;utm_campaign=demo\" rel=\"nofollow ugc\">Live Demo</a></p>\n<h3>Free Features (25):</h3>\n<ul>\n<li>WooCommerce Template Builder (Basic)</li>\n<li>Product Grid</li>\n<li>Product Slider</li>\n<li>Product Tab</li>\n<li>Action Buttons in different Positions</li>\n<li>Sale / Discount Schedule Counter</li>\n<li>Enable / Disable Product Gallery</li>\n<li>Unlimited Color and font Variations.</li>\n<li>Slider Control Options</li>\n<li>Sales Notification (Real)</li>\n<li>Sales Notification (Custom)</li>\n<li>Rename labels</li>\n<li>Call for Price</li>\n<li>Suggest Price</li>\n<li>Special Day offer banner</li>\n<li>Product QR Code</li>\n<li>Custom Product Template Builder</li>\n<li>Product Grid (Curvy)</li>\n<li>Product Accordion Listing</li>\n<li>Product Image Accordion</li>\n<li>Shop Page Builder</li>\n<li>Ajax Search Widget</li>\n<li>Ajax Add to Cart (In Product Detail Page)</li>\n<li>Horizontal Filter <a href=\"https://woolentor.com/demo/horizontal-filter/\" rel=\"nofollow ugc\">Demo</a></li>\n<li>Vertical Filter <a href=\"https://woolentor.com/demo/filter-vertical/\" rel=\"nofollow ugc\">Demo</a></li>\n<li>Template Library (Basic)</li>\n<li>Free WooCommerce Themes</li>\n</ul>\n<h3>Premium Features (14):</h3>\n<p>✓ Rename Label (Advanced)<br />\n✓ Custom Product Template Builder for Individual Product<br />\n✓ Individual Archive Page Builder<br />\n✓ Custom Cart Page Builder<br />\n✓ Custom Checkout Page Builder<br />\n✓ Custom My Account Page Builder<br />\n✓ Sticky Add to cart<br />\n✓ Template Library (Premium)<br />\n✓ 5 Premium WooCommerce Themes<br />\n✓ WooCommerce Template Builder (Advanced)<br />\n✓ Phone Call Support<br />\n✓ Premium Support<br />\n✓ Zoom/Skype/TeamViewer Support<br />\n✓ Free Store Setup (Maximum 2)</p>\n<h3>Available Widgets:</h3>\n<p><strong>General Widgets</strong></p>\n<p><strong><a href=\"https://woolentor.com/demo/product-tabs\" rel=\"nofollow ugc\">Product Tabs</a></strong> – Display your products in a tabbed format based on different categories.</p>\n<p><strong><a href=\"https://woolentor.com/demo/add-banner\" rel=\"nofollow ugc\">Add Banner</a></strong> – Create a banner section and control the style and layout of the banner.</p>\n<p><strong><a href=\"https://woolentor.com/demo/special-day-offer\" rel=\"nofollow ugc\">Special Day Offer Banner</a></strong> – Create a banner for any special day offers like Black Friday, Cyber Monday, Christmas, etc.</p>\n<p><strong><a href=\"https://woolentor.com/demo/image-marker/\" rel=\"nofollow ugc\">Image marker</a></strong> – Describe a product by adding markers on different parts of that product’s image.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product-layout/\" rel=\"nofollow ugc\">Universal Product Layout</a></strong> – Create your own customized layout to display your products from several different options available in this widget.</p>\n<p><strong><a href=\"https://woolentor.com/demo/category-view/\" rel=\"nofollow ugc\">Category List</a></strong> – Control the product category list style according to your requirements.</p>\n<p><strong><a href=\"https://woolentor.com/demo/brand-logo/\" rel=\"nofollow ugc\">Brand</a></strong> – Showcase brand logos within a grid or carousel layout.</p>\n<p><strong><a href=\"https://woolentor.com/demo/customer-review/\" rel=\"nofollow ugc\">Customer Review</a></strong> – Display customer reviews and control the style and layout of the reviews.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product-curvy/\" rel=\"nofollow ugc\">Product Curvy</a></strong> – Showcase your products in an attractive card layout with circular images.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product-image-accordion/\" rel=\"nofollow ugc\">Product Image Accordion</a></strong> – Add a stunning image accordion for your products to grab the attention of your customers.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product-accordion/\" rel=\"nofollow ugc\">Product Accordion</a></strong> – Add a simple but effective product according to your store and customize as per your needs.</p>\n<p><strong><a href=\"https://woolentor.com/demo/ajax-search-form/\" rel=\"nofollow ugc\">AJAX Search Form</a></strong> –  Incorporate an AJAX search form to your store so that your customers can get live search suggestions when searching for a product.</p>\n<p><strong>Template Selector</strong> –  Create a custom Elementor template by utilizing this very widget and use it anywhere you want.</p>\n<p><strong>For Single Product Page:</strong></p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Product Title</a></strong> – Control the layout and styling of your product title.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Product Description</a></strong> – Get control over the layout and style of your product description.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Product Short Description</a></strong> – Manage the layout and style of your product short description.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Add to Cart</a></strong> – Manage the style and layout of the Add to Cart button.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Additional Information</a></strong> – Add additional information for your products.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Product Data Tabs</a></strong> – Enables you to control the data tabs style.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Related Product</a></strong> – Set the number of related products to display and change the style according to your needs.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea/\" rel=\"nofollow ugc\">Related Product Layout (Custom)</a></strong> – Create a more customized layout to display the related products. (Pro)</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea/\" rel=\"nofollow ugc\">Product Price</a></strong> – Set the style for the product price of your product.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea/\" rel=\"nofollow ugc\">Product Rating</a></strong> – Control the product rating style.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea/\" rel=\"nofollow ugc\">Product Reviews</a></strong> – Display product reviews and a form for the customer to submit a review.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ninja-silhouette/\" rel=\"nofollow ugc\">Product Image</a></strong> – Take control over the styling of your product image and thumbnails.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Advanced Product Thumbnails</a></strong> – Control the product thumbnails layout and show/hide the sale badge. (Pro)</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/image-zoom/\" rel=\"nofollow ugc\">Advanced Product Thumbnails with Zoom</a></strong> – Showcase your product thumbnails with a zoom effect.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/video-in-product-gallery/\" rel=\"nofollow ugc\">Product Video Gallery</a></strong> – Add videos to the product thumbnails gallery and get control over the gallery position.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Upsell Product</a></strong> – Set the number of upsell products to display and change the style based on your needs.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea/\" rel=\"nofollow ugc\">Upsell Product Layout (Custom)</a></strong> – Create a more personalized layout to display the upsell products.(Pro)</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/stock-progress-bar/\" rel=\"nofollow ugc\">Product Stock</a></strong> – Control the style of your product stock status.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Product Meta</a></strong> – Customize the style of your product metadata.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/call-for-price/\" rel=\"nofollow ugc\">Call for Price</a></strong> – Allows you to add a button using which your customers will be able to call you to know the price of your products.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/suggest-price/\" rel=\"nofollow ugc\">Suggest Price</a></strong> – Insert a button to get suggestions from your customers regarding the price of your products.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/qr-code/\" rel=\"nofollow ugc\">QR Code</a></strong> – Let your customers add any products to their cart just by scanning the QR code from their mobile phone.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/ship-your-idea-3/\" rel=\"nofollow ugc\">Social Share</a></strong> – Enable your customers to share your products on different social media platforms. (Pro)</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/stock-progress-bar/\" rel=\"nofollow ugc\">Stock Progress Bar</a></strong> – Add a progress bar to display the number of ordered products and available products. (Pro)</p>\n<p><strong><a href=\"https://woolentor.com/demo/product/patient-ninja/\" rel=\"nofollow ugc\">Product Sale Schedule</a></strong> – Set up a discount scheduler for each product that is on sale. (Pro)</p>\n<p><strong>Cart Page Widgets (Pro):</strong></p>\n<p><strong><a href=\"https://woolentor.com/demo/cart/\" rel=\"nofollow ugc\">Cart Table</a></strong> – Control each and every element of the cart table and customize the action buttons.</p>\n<p><strong><a href=\"https://woolentor.com/demo/cart/\" rel=\"nofollow ugc\">Cart Total</a></strong> – Manage the style and layout of the cart total table.</p>\n<p><strong><a href=\"https://woolentor.com/demo/cart/\" rel=\"nofollow ugc\">Empty Cart Message</a></strong> – Change the empty cart message text and customize the style.</p>\n<p><strong><a href=\"https://woolentor.com/demo/cart/\" rel=\"nofollow ugc\">Empty Cart Redirect Button</a></strong> – Get full control over the redirect button of an empty Cart page.</p>\n<p><strong><a href=\"https://woolentor.com/demo/cart/\" rel=\"nofollow ugc\">Cross Sell Product</a></strong> – Set the number of cross sell products to display and control the style.</p>\n<p><strong><a href=\"https://woolentor.com/demo/cart/\" rel=\"nofollow ugc\">Cross Sell Product Layout (Custom)</a></strong> – Create a more personalized layout to display the upsell products.</p>\n<p><strong>Checkout Page Widgets (Pro):</strong></p>\n<p><strong><a href=\"https://woolentor.com/demo/checkout/\" rel=\"nofollow ugc\">Checkout Additional Info Form</a></strong> – Modify the fields and style of the additional information form.</p>\n<p><strong><a href=\"https://woolentor.com/demo/checkout/\" rel=\"nofollow ugc\">Checkout Billing Form</a></strong> – Get full control over the fields and styles of the billing form.</p>\n<p><strong><a href=\"https://woolentor.com/demo/checkout/\" rel=\"nofollow ugc\">Checkout Shipping Form</a></strong> – Manage all the fields and necessary styles of the shipping form.</p>\n<p><strong><a href=\"https://woolentor.com/demo/checkout/\" rel=\"nofollow ugc\">Checkout Payment Method</a></strong> – Set your own style for the payment method section of the Checkout page.</p>\n<p><strong><a href=\"https://woolentor.com/demo/checkout/\" rel=\"nofollow ugc\">Checkout Coupon Form</a></strong> – Control the layout and style of the coupon form effortlessly.</p>\n<p><strong><a href=\"https://woolentor.com/demo/checkout/\" rel=\"nofollow ugc\">Checkout Login Form</a></strong> – Customize the login form as per your requirements.</p>\n<p><strong><a href=\"https://woolentor.com/demo/checkout/\" rel=\"nofollow ugc\">Checkout Order Review</a></strong> – Change the style of the order review form exactly the way you want.</p>\n<p><strong>My Account Page Widgets (Pro):</strong></p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account</a></strong> – Control the navigation menu items and style of the account page.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Dashboard</a></strong> – Display the dashboard options from the account page separately and set your own style.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Download</a></strong> – Display the download options from the account page separately.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Edit</a></strong> – Show a form for your customers to edit the account information and control the style of the form elements.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Address</a></strong> – Enable your customers to provide their billing and shipping details.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Login Form</a></strong> – Control the layout and style of the customer login form.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Register Form</a></strong> – Control the layout and style of the customer registration form.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Logout</a></strong> – Show a link to log out and customize the link based on your needs.</p>\n<p><strong><a href=\"https://woolentor.com/demo/my-account/\" rel=\"nofollow ugc\">My Account Order</a></strong> – Display the order details from the account page separately.</p>\n<p><strong>Shop or Archive Page Widgets:</strong></p>\n<p><strong><a href=\"https://woolentor.com/demo/shop/\" rel=\"nofollow ugc\">Product Archive Layout</a></strong> – Display your products using the theme style and customize the necessary styles if necessary.</p>\n<p><strong><a href=\"https://woolentor.com/demo/product-category/clothing/hoodies/\" rel=\"nofollow ugc\">Product Archive Layout (Custom)</a></strong> – Display your products using a more customized layout and get control over the styles of every element. (Pro)</p>\n<p><strong><a href=\"https://woolentor.com/demo/horizontal-filter/\" rel=\"nofollow ugc\">Horizontal Filter</a></strong> &#8211; Show various product filtering options horizontally and take absolute control over the styles and layouts of the filters.</p>\n<p><strong><a href=\"https://woolentor.com/demo/filter-vertical/\" rel=\"nofollow ugc\">Vertical Filter</a></strong> &#8211; Display several product filtering options vertically and get complete control over the styles and layouts of the filters.</p>\n<h3>Key Features:</h3>\n<p><strong><a href=\"https://hasthemes.com/woocommerce-sales-notification-using-woolentor/\" rel=\"nofollow ugc\">Sales Notification</a></strong><br />\nThis feature allows showing the sales notification or popup to display real/fake orders. In the dashboard, there is option to manage the design of the notification. <a href=\"https://hasthemes.com/woocommerce-sales-notification-using-woolentor/\" rel=\"nofollow ugc\">Check the video</a> for more details.</p>\n<p><strong><a href=\"https://hasthemes.com/rename-label-for-woocommerce-pages-and-licensing-option-for-pro-version/\" rel=\"nofollow ugc\">Rename Label</a></strong><br />\nWooLentor allows renaming label for Shop, Product details, Cart, Checkout page text. For example, add to cart button text and checkout page fields text.</p>\n<p><strong><a href=\"https://hasthemes.com/call-for-price-and-suggest-price-in-woocommerce-using-woolentor/\" rel=\"nofollow ugc\">Call for price</a></strong><br />\nYou may have product without any price. Your customer can call you to know the price. We found many websites where they display products without any price. For this type of website, we added these features. If anyone clicks on the &#8220;Call for price&#8221; from a mobile, a customer can easily contact you by phone call.</p>\n<p><strong><a href=\"https://hasthemes.com/call-for-price-and-suggest-price-in-woocommerce-using-woolentor/\" rel=\"nofollow ugc\">Suggest Price</a></strong><br />\nYour customer can suggest a price for your products. You can add this button anywhere on your product detail page. We put it on the right side of the add to cart button.  If a customer clicks here, a contact form will open to send the price suggestion.</p>\n<p><strong><a href=\"https://hasthemes.com/how-to-add-special-day-offer-in-woocommerce-using-woolentor/\" rel=\"nofollow ugc\">Special Day Offer Banner</a></strong><br />\nThere are many special days like Black Friday, Chrismas Day, Haloween day. Discounts and offers can increase store sales these days. a banner can attract attention of visitors and sometimes it increases a 15-30% conversion rate. Recently, we have added a widget for adding a special day offer.</p>\n<p><strong><a href=\"https://hasthemes.com/how-to-customize-woocommerce-checkout-page-and-field/\" rel=\"nofollow ugc\">WooCommerce Checkout Page Customization and Field Editor (Pro)</a></strong><br />\nWooLentor Pro allows us to customize the checkout page to reduce the bounce rate and increase the conversion rate. Sometimes, a custom checkout page is necessary for an eCommerce store. WooLentor Pro makes it easy. Besides creating a custom checkout page, WooLentor allows removing or editing checkout page fields (billing and shopping fields).</p>\n<p><strong><a href=\"https://hasthemes.com/how-to-build-a-custom-product-template-using-woolentor-plugin/\" rel=\"nofollow ugc\">Customize WooCommerce Single Product Template</a></strong><br />\nWooLentor allows us to create a custom single product template. Create a unique design for your product page. Free version has the option to create a common product page template, the pro version allows to create a different design for each product page.</p>\n<p><strong>Flash Sale Countdown</strong><br />\nFlash Sale Countdown module allows you to show discounts available for a limited time. Short-term sales can be a fantastic way to sell a large number of items in a few hours. If your company expects an exceptional rise in your checkout counts, you ought to use the Flash Sale Countdown module on New Year&#8217;s Eve, Black Friday, Christmas, and other holiday sales.</p>\n<p><strong><a href=\"https://woolentor.com/shopify-style-checkout-page-in-woocommerce/\" rel=\"nofollow ugc\">Shopify Style Checkout Page in WooCommerce</a></strong><br />\nWhen it comes to the Checkout page, customers always prefer a clean and simple one rather than a complicated one with lots of fields. A lengthy Checkout form can even increase cart abandonment while also negatively affecting the conversion rates. With this in mind, we have added a fantastic feature, which will enable you to create a Shopify style Checkout page that is pretty straightforward. Furthermore, it will provide the customers with an amazing Checkout experience.</p>\n<p><strong>Backorder Module</strong><br />\nYou may use a Backorder module to enable your consumers to make purchases from you that you can&#8217;t currently fulfill. Cross-docking strategies, such as those used by organized firms, can help them fill orders quickly once goods arrive, saving time and resources. Backorders offer flexibility to warehouse management when products take up a lot of room or when  aa customer needs to pay and receive the product at a later date.</p>\n<p><strong>Multi-Step Checkout (Pro)</strong><br />\nThe checkout process is the most important step in your customer’s journey, and it should be as easy and seamless as possible. That’s why we created our Multi-Step Checkout feature that allows you to create a more effective and organized checkout page by dividing the process into several simpler steps.</p>\n<p><strong>Partial Payment (Pro)</strong><br />\nCustomers may utilize the partial payment option to make a part payment since they just don&#8217;t have enough money on hand to pay the invoice in full. Store owners can handle partial payments and decide whether or not consumers can get the product right away or only after they pay full price.</p>\n<p><strong>Pre-Order Module (Pro)</strong><br />\nA preorder is a purchase in which a customer makes before the product officially becomes available. Pre-ordering is a powerful marketing module that lets you reserve items ahead of time and charge customers a deposit or full payment.  Customers also enjoy pre-ordering as it ensures that they will obtain the product right after it has been released. The main benefit of utilizing a pre-order strategy is that it allows you to grow eCommerce sales and forecast consumer demand.</p>\n<p><strong>GTM Conversion Tracking (Google Tag Manager) Module (Pro)</strong><br />\nGTM Conversion Tracking Module helps you keep track of conversions and assign them to specific sources. You may identify whether a sale was caused by a Google Ads/Facebook Ads, a direct website visit, or a social media post. When you link your store seamlessly with GTM, you&#8217;ll generate more income from advertising by gathering precise sales data.</p>\n<h3>Extensions:</h3>\n<p><strong>❤️ <a href=\"https://wordpress.org/plugins/wishsuite/\">WishSuite for WooCommerce Wishlist</a></strong><br />\nWishSuite is a fantastic WordPress plugin that enables you to integrate the wishlist feature on your WooCommerce store. With the help of this extraordinary Wishlist plugin, you can provide a seamless shopping experience to your potential customers by allowing them to create a wishlist and add their desired products to that wishlist so that they find all their items in one place later.</p>\n<p><strong>⚖️ <a href=\"https://wordpress.org/plugins/ever-compare/\">EverCompare for Product Compare</a></strong><br />\nEverCompare is a wonderful WordPress plugin that lets you add a product comparison option to your WooCommerce store using which your store visitors will be able to compare different products in a table layout or a popup window. This allows them to check the differences among the products based on several attributes while helping them make the buying decision easier at the same time.</p>\n<p><strong>? <a href=\"https://wordpress.org/plugins/whols/\">Whols for WooCommerce Wholesale</a></strong><br />\nWhols is an outstanding WordPress plugin for WooCommerce that allows store owners to set wholesale prices for the products of their online stores. This plugin enables you to show special wholesale prices to the wholesaler.</p>\n<p><strong>? <a href=\"https://wordpress.org/plugins/just-tables/\">JustTables for WooCommerce Product Table</a></strong><br />\nJustTables is an incredible WordPress plugin that lets you showcase all your WooCommerce products in a sortable and filterable table view. It allows your customers to easily navigate through different attributes of the products and compare them on a single page.</p>\n<p><strong>? <a href=\"https://wordpress.org/plugins/wc-multi-currency/\">Multi Currency for WooCommerce Currency Switcher</a></strong><br />\nMulti-Currency for WooCommerce is a prominent currency switcher plugin for WooCommerce. This plugin allows your website or online store visitors to switch to their preferred currency or their country’s currency.</p>\n<h3>WooLentor Pro Features:</h3>\n<ul>\n<li>41 Elements</li>\n<li>WooCommerce Teplate Builder (Advance)</li>\n<li>15 Product Custom Template Layouts ( Deafult + Invidual) </li>\n<li>Cart, Checkout, My Account, Registration Page Builder. </li>\n<li>Individual and Default Archieve Template Builder.</li>\n</ul>\n<h3><a href=\"https://woolentor.com/pricing/?utm_source=wprepo&amp;utm_medium=freeplugin&amp;utm_campaign=purchasepro\" rel=\"nofollow ugc\">Purchase WooLentor Pro</a></h3>\n<h3>Video Tutorials:</h3>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/_MOgvsZJ6uA?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></span><br />\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/MKjhBO2xQzg?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></span></p>\n<h3>How to customize woocommerce single product template</h3>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/yMWtnsufvJk?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></span>\n<h3>Build Custom My Account Page (Pro Feature)</h3>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/b7tbEU1NUO8?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></span>\n<p><strong><a href=\"https://hasthemes.com/how-to-customize-woocommerce-checkout-page-and-field/\" rel=\"nofollow ugc\">WooCommerce Checkout Field Editor (Pro Feature)</a></strong><br />\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/qRRAECqyquU?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></span></p>\n<p><strong>WooCommerce Multistep Checkout (Pro Feature)</strong><br />\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/a4fhaPKSEFQ?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></span></p>\n<p><strong>Product Filters</strong><br />\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/-AXka-sc8hY?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></span></p>\n<h3><a href=\"https://hasthemes.com/blog-category/woolentor/\" rel=\"nofollow ugc\">More Video</a></h3>\n<ul>\n<li><a href=\"https://hasthemes.com/stock-progress-bar-for-woocommerce-product-using-woolentor/\" rel=\"nofollow ugc\">Stock Progress bar for WooCommerce Product using WooLentor</a></li>\n<li><a href=\"https://hasthemes.com/how-to-build-a-custom-product-template-using-woolentor-plugin/\" rel=\"nofollow ugc\">How to build a custom product template using WooLentor Plugin</a></li>\n<li><a href=\"https://hasthemes.com/how-to-use-universal-product-grid-layouts/\" rel=\"nofollow ugc\">How to use Universal Product Grid Layouts</a></li>\n</ul>\n<h3>Free WooCommerce Themes</h3>\n<ul>\n<li>\n<p>99fy is a free WooCommerce theme. 99 demos for 24 niche categories are included in this theme.<br />\n<a href=\"https://hasthemes.com/99fy-free-woocommerce-wordpress-theme/\" rel=\"nofollow ugc\">More Details / Preview</a></p>\n</li>\n<li>\n<p>Parlo WooCommerce Theme<br />\n<a href=\"http://demo.shrimpthemes.com/1/parlo/\" rel=\"nofollow ugc\">More Details / Preview</a></p>\n</li>\n</ul>\n<h3>Premium WooCommerce Themes Included in The Pro Version</h3>\n<p>We have included a few premium WooCommerce themes in the WooLentor Pro Package to save money of our customers.<br />\n<a href=\"https://demo.hasthemes.com/flone-woo-preview/index.html\" rel=\"nofollow ugc\">Flone</a><br />\nFlone is one of our most popular WooComemrce Themes using by 1000+ stores.<br />\n<a href=\"https://demo.hasthemes.com/99fy-preview/index.html\" rel=\"nofollow ugc\">99Fy Pro</a><br />\nPro version of 99fy is included in WooLentor pro. 99 demos for 24 niche categories are included in this theme.<br />\n<a href=\"http://demo.hasthemes.com/wp/holmes-preview.html\" rel=\"nofollow ugc\">Holmes</a><br />\nHolmes is a multipurpose premium WooCommerce Theme.<br />\n<a href=\"https://hasthemes.com/plugins/woolentor-pro-woocommerce-page-builder/#themes\" rel=\"nofollow ugc\">Check all of the themes</a>, included in the Woolentor Pro version.</p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n<blockquote><p>\n  Absolute Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Absolute mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Absolute Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3><a href=\"https://wordpress.org/plugins/elementor/\">Elementor</a> page builder is required for this plugin.</h3>\n<p>Elementor Pro is not required. But you can use wooLentor with Elementor free &amp; Pro.</p>\n\";s:13:\"download_link\";s:59:\"https://downloads.wordpress.org/plugin/woolentor-addons.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:11:\"woocommerce\";s:11:\"woocommerce\";s:19:\"woocommerce-builder\";s:19:\"WooCommerce Builder\";s:21:\"woocommerce-elementor\";s:21:\"woocommerce elementor\";s:19:\"woocommerce-product\";s:19:\"WooCommerce product\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:69:\"https://ps.w.org/woolentor-addons/assets/icon-128x128.png?rev=2446141\";s:2:\"2x\";s:69:\"https://ps.w.org/woolentor-addons/assets/icon-256x256.png?rev=2579909\";}}i:34;a:24:{s:4:\"name\";s:61:\"WP Education &#8211; Education WordPress Plugin for Elementor\";s:4:\"slug\";s:12:\"wp-education\";s:7:\"version\";s:5:\"1.2.3\";s:6:\"author\";s:47:\"<a href=\"https://htplugins.com/\">HT Plugins</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/devitemsllc/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:200;s:10:\"downloaded\";i:7182;s:12:\"last_updated\";s:21:\"2022-04-25 5:17am GMT\";s:5:\"added\";s:10:\"2018-12-02\";s:8:\"homepage\";s:33:\"http://demo.wphash.com/education/\";s:17:\"short_description\";s:59:\"WP Education is a Education WordPress Plugin for Elementor.\";s:11:\"description\";s:5361:\"<p>WP Education is a WordPress Education plugin which helps you to show your Education based online sites. This plugin is fully responsive and mobile friendly and also easy to customize. You can create unlimited Education custom post type ( Events, Courses, Classes, Gallery, Teachers, Excursions, Team, Testimonial ) and it’s required meta fields for educational sites. This plugin is dedicated for educational themes. This plugin has Education details page, Course details page, Event details page, Teachers detail page and archive page. This plugin also supports Elementor page builder, thats why by using the Elementor Addons you will be able to show Education anywhere on your site at a moment.</p>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/8xefXRK4AM0?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></span>\n<h4>Demos and More Info</h4>\n<blockquote>\n<p>A theme using WP Education Plugin : <a href=\"http://demo.wphash.com/techedu/\" rel=\"nofollow ugc\">Live Demo</a></p>\n<p>Purchase a Premium : <a href=\"https://themeforest.net/item/techedu-education-wordpress-theme/18716168\" rel=\"nofollow ugc\">Education WordPress Theme</a> only at $49</p>\n</blockquote>\n<h3>Features:</h3>\n<ul>\n<li>Fully Responsive and Mobile Ready.</li>\n<li>Clean Design &amp; Code.</li>\n<li>No Coding Required.</li>\n<li>Easy Education Option Page.</li>\n<li>Bootstrap Framework Based.</li>\n<li>FontAwesome Icon.</li>\n<li>Image icon Support.</li>\n<li>Featured Image Support.</li>\n<li>Customize the Number of Columns.</li>\n<li>Cross-browser Compatibility.</li>\n<li>Build with HTML5 &amp; CSS3.</li>\n</ul>\n<h3>Special Features:</h3>\n<ul>\n<li>21+ Elementor Addons.<br />\nCourse Addons.<br />\nTeachers Addons.<br />\nGallery Addons.<br />\nEvent Addons.<br />\nSlider Addons.<br />\nInfo Box Addons.<br />\nBenefit Box Addons.<br />\nProgress Bar Addons.<br />\nService Box Addons.<br />\nTestimonial Addons.<br />\nCounter Addons.<br />\nCounter Down Addons.<br />\nCall To Action Addons.<br />\nBlog Addons.<br />\nGoogle Map Addons.<br />\nIcon List Addons.<br />\nTeachers Sidebar Addons.<br />\nAccrodion Tab Addons.<br />\nSchedule Addons.<br />\nSection Devider Addons.<br />\nSection Title Addons.</li>\n<li>Class Style.<br />\nGrid Class Style.<br />\nCarousel Class Style.</li>\n<li>Class Details Features.<br />\nAccrodian Tab.<br />\nInfo List Class Sidebar.<br />\nTeacher Sidebar Widgets.<br />\nRelated Course.</li>\n<li>Teacher Style.<br />\nGrid Teacher Style.<br />\nCarousel Teacher Style.</li>\n<li>Teacher Details Page Features.<br />\nAbout Info List Teacher.<br />\nTeacher Schedule.<br />\nTeacher Skill.<br />\nTeacher Personal Info.<br />\nRelated Teacher Post.</li>\n<li>Event Style.<br />\nGrid Event Style.<br />\nCarousel Event Style.</li>\n<li>Event Details Page Features.<br />\nEvent Schedule Details.<br />\nEvent Featured Image.<br />\nEvent Description.<br />\nRelated Event Post.</li>\n<li>Gallery Style.<br />\nGallery Column 2.<br />\nGallery Column 3.<br />\nGallery Column 4.<br />\nGallery Image Popup.</li>\n<li>Call To Action Layout.<br />\nBasic.<br />\nFlex Grid.<br />\nFlex Grid With Icon.</li>\n<li>Testimonial Layout.<br />\nTestimonial Layout One.<br />\nTestimonial Layout Two.</li>\n<li>Info Box Style.<br />\nIcon Layout.<br />\nImage Layout.</li>\n<li>Slider Layout.<br />\nSlider Layout One.<br />\nSlider Layout Two.<br />\nSlider Layout Three.</li>\n<li>Blog Layout.<br />\nBlog Layout One.<br />\nBlog Layout Two.</li>\n<li>Service Box Image/Icon Style.<br />\nImage/Icon On Top.<br />\nImage/Icon On Left.<br />\nImage/Icon On Right.</li>\n<li>Education Details Page.</li>\n<li>Education Content Varaitions.</li>\n<li>Related Education Show/Hide Option.</li>\n<li>Related Education Title Change Option.</li>\n<li>Featured Image Show/Hide Option.</li>\n<li>Elementor Addons Included.</li>\n<li>Display Education By Category.</li>\n<li>Title Link Show/Hide Option.</li>\n<li>Unlimited Color options.</li>\n<li>Icon Color Option.</li>\n<li>Box Background Color Option.</li>\n<li>Box Background Hover Color Option.</li>\n<li>Box Border Color Option.</li>\n<li>Box Border Hover Color Option.</li>\n<li>Carousel Option.</li>\n<li>Carousel Navigation Icon Select Option.</li>\n<li>Carousel Navigation Style Option.</li>\n<li>Carousel AutoPlay Control Option.</li>\n<li>Autoplay Speed Control Option.</li>\n</ul>\n<h3><a href=\"https://wordpress.org/plugins/elementor/\">Elementor</a> page builder is required to Use Addons In This Plugin</h3>\n<p>WP Education &#8211; Education WordPress Plugin has the following third-party resources:</p>\n<ol>\n<li>\n<p>CMB2:<br />\nSource: <a href=\"https://wordpress.org/plugins/cmb2/\">cmb2</a></p>\n</li>\n<li>\n<p>Elementor:<br />\nSource: <a href=\"https://wordpress.org/plugins/elementor/\">elementor</a></p>\n</li>\n<li>\n<p>Contact Form 7:<br />\nSource: <a href=\"https://wordpress.org/plugins/contact-form-7/\">elementor</a></p>\n</li>\n</ol>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:55:\"https://downloads.wordpress.org/plugin/wp-education.zip\";s:4:\"tags\";a:5:{s:7:\"college\";s:7:\"college\";s:6:\"course\";s:6:\"course\";s:6:\"events\";s:6:\"events\";s:10:\"university\";s:10:\"University\";s:12:\"wp-education\";s:12:\"WP Education\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/wp-education/assets/icon-128x128.png?rev=1984331\";}}i:35;a:24:{s:4:\"name\";s:48:\"WP News &#8211; WordPress News / Magazine Plugin\";s:4:\"slug\";s:16:\"wp-news-magazine\";s:7:\"version\";s:5:\"1.1.4\";s:6:\"author\";s:66:\"<a href=\"https://profiles.wordpress.org/htplugins/\">HT Plugins</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:46;s:7:\"ratings\";a:5:{i:5;i:1;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:2;}s:11:\"num_ratings\";i:3;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:600;s:10:\"downloaded\";i:11355;s:12:\"last_updated\";s:21:\"2022-04-10 5:41am GMT\";s:5:\"added\";s:10:\"2019-01-11\";s:8:\"homepage\";s:44:\"https://thethemedemo.com/elementor/hashnews/\";s:17:\"short_description\";s:78:\"WP News is a elementor 14+ addons, 6+ WordPress Default widgets For WordPress.\";s:11:\"description\";s:1450:\"<p>WP News is a WordPress News / Magazine Plugin. You can create any news site easily.<br />\nThis plugin includes Elementor Addon, WordPress Widget, Custom styles options with different customization option, News Slider, News Grid, News Tab.</p>\n<p>You can see the plugin demo here : <a href=\"http://demo.wphash.com/1/wpnews/\" rel=\"nofollow ugc\">Demo</a></p>\n<p>Download Our Free Theme Compatible with WP News Plugin : <a href=\"https://freethemescloud.com/item/wp-news-free-wordpress-news-magazine-theme/\" rel=\"nofollow ugc\">Download</a></p>\n<blockquote><p>\n  Ultimate Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Ultimate Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>Features:</h3>\n<ul>\n<li>14+ Elementor Addons.</li>\n<li>6+ WordPress Widgets</li>\n<li>Style Options Every Addons.</li>\n<li>News Slider</li>\n<li>News Carousel</li>\n<li>News Tabs</li>\n<li>Unlimited Color Variation.</li>\n<li>Fully Responsive and Mobile Ready.</li>\n<li>Clean Design &amp; Code.</li>\n<li>No Coding Required.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://htplugins.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:59:\"https://downloads.wordpress.org/plugin/wp-news-magazine.zip\";s:4:\"tags\";a:5:{s:4:\"blog\";s:4:\"blog\";s:9:\"elementor\";s:9:\"elementor\";s:8:\"magazine\";s:8:\"magazine\";s:4:\"news\";s:4:\"news\";s:14:\"wordpress-news\";s:14:\"WordPress news\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wp-news-magazine/assets/icon-128x128.png?rev=2010507\";}}i:36;a:24:{s:4:\"name\";s:53:\"WP Plugin Manager &#8211; Deactivate plugins per page\";s:4:\"slug\";s:17:\"wp-plugin-manager\";s:7:\"version\";s:5:\"1.1.4\";s:6:\"author\";s:46:\"<a href=\"https://hasthemes.com/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.4\";s:6:\"rating\";i:82;s:7:\"ratings\";a:5:{i:5;i:7;i:4;i:0;i:3;i:1;i:2;i:1;i:1;i:1;}s:11:\"num_ratings\";i:10;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:4000;s:10:\"downloaded\";i:37460;s:12:\"last_updated\";s:21:\"2022-03-07 3:33am GMT\";s:5:\"added\";s:10:\"2020-01-01\";s:8:\"homepage\";s:30:\"https://hasthemes.com/plugins/\";s:17:\"short_description\";s:88:\"&quot;Plugin Manager&quot; is a plugin which allow you to disable plugins for page/posts\";s:11:\"description\";s:3600:\"<p>In this modern era, there is a huge demand for faster loading websites. If a website loads fast then it is considered to be more reliable and professional. The website loading speed plays a vital role when it comes to user experience. It also creates a strong impression on your visitor which even results in a higher conversion rate.</p>\n<p>&#8220;WP Plugin Manager&#8221; is a WordPress plugin that allows you to disable plugins for certain pages or posts. Sometimes you don&#8217;t need to load all the plugins for every page or post. Even if you do it drops the loading speed of your website drastically. So, you may want to disable some of the plugins for some certain pages or posts in order to make your website fast and professional as well. That&#8217;s where our plugin &#8220;Plugin Manager&#8221; comes to your rescue. You will be able to disable any plugins which you think are unnecessary for specific pages or posts according to your needs.</p>\n<h3>Features:</h3>\n<ul>\n<li>Selectively disable plugins</li>\n<li>Disable plugins to any specific pages</li>\n<li>Disable plugins to any specific posts</li>\n<li>Easy Options panel</li>\n<li>Very lightweight</li>\n</ul>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/u94hkbTzKFU?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></span>\n<h3>Pro Features</h3>\n<ul>\n<li>Apply rule on Mobile/Tablet/Desktop</li>\n<li>Enble on selected and Disable on selected option.</li>\n</ul>\n<p><a href=\"https://hasthemes.com/plugins/wp-plugin-manager-pro/\" rel=\"nofollow ugc\">Purchase Pro version</a></p>\n<h3>Advantages of using the WP Plugin Manager.</h3>\n<ul>\n<li>Reduces the page size, because unnecessary CSS/js files are not loading.</li>\n<li>Reduces the total number of HTTP requests.</li>\n<li>Make a website up to 90% faster.</li>\n<li>Website performance is an important factor to increase conversion. WP Manager increases the overall performance of a website.</li>\n</ul>\n<h3>Peformance checking tools:</h3>\n<p>There are a few tools available to check the website performance ( Loading time, page analyze etc.)<br />\n* <a href=\"https://developers.google.com/speed/pagespeed/insights/\" rel=\"nofollow ugc\">Google Pagespeed Insights</a><br />\n* <a href=\"https://tools.pingdom.com/\" rel=\"nofollow ugc\">Pingdom</a><br />\n* <a href=\"https://gtmetrix.com/\" rel=\"nofollow ugc\">GTmetrix</a><br />\n* <a href=\"https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector\" rel=\"nofollow ugc\">Firefox Dev Tools</a><br />\n* <a href=\"https://developers.google.com/web/tools/chrome-devtools/\" rel=\"nofollow ugc\">Chrome DevTools</a><br />\n* <a href=\"https://docs.microsoft.com/en-us/microsoft-edge/f12-devtools-guide\" rel=\"nofollow ugc\">Edge F12 Dev Tools</a><br />\n* <a href=\"https://support.apple.com/guide/safari-developer/network-tab-dev1f3525e58/mac\" rel=\"nofollow ugc\">Safari Web Inspector Guide</a></p>\n<h3>Documentation:</h3>\n<p>Read this article <a href=\"https://hasthemes.com/disable-or-deactivate-wordpress-plugins-per-page/\" rel=\"nofollow ugc\">Disable or deactivate WordPress Plugins per page</a></p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:66:\"https://downloads.wordpress.org/plugin/wp-plugin-manager.1.1.4.zip\";s:4:\"tags\";a:5:{s:17:\"deactivate-plugin\";s:17:\"deactivate plugin\";s:14:\"disable-plugin\";s:14:\"disable plugin\";s:11:\"performance\";s:11:\"performance\";s:14:\"plugin-manager\";s:14:\"plugin manager\";s:17:\"wp-plugin-manager\";s:17:\"WP Plugin Manager\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-plugin-manager/assets/icon-128x128.jpg?rev=2220349\";}}i:37;a:24:{s:4:\"name\";s:44:\"WP Team &#8211; WordPress Team Member Plugin\";s:4:\"slug\";s:14:\"ht-team-member\";s:7:\"version\";s:5:\"1.1.0\";s:6:\"author\";s:47:\"<a href=\"https://htplugins.com/\">HT Plugins</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:2;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:2;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:500;s:10:\"downloaded\";i:5353;s:12:\"last_updated\";s:21:\"2021-09-20 8:47am GMT\";s:5:\"added\";s:10:\"2019-01-29\";s:8:\"homepage\";s:22:\"https://htplugins.com/\";s:17:\"short_description\";s:103:\"The WP Team Member is a elementor addons, visual composer addons, WordPress Default widgets and&hellip;\";s:11:\"description\";s:1547:\"<p>WP Team Member is a WordPress Team Member / Widget Plugin. Create Team Member in a preferred style and place it to your website in any section easily.</p>\n<p>This plugin includes Elementor Addon, WP Bakery Page Builder addon, WordPress Widget, 5 Custom styles with different customization option, Slider enable/disable option and column control option.</p>\n<blockquote><p>\n  Ultimate Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Ultimate Addons for Elementor Page Builder</a><br />\n  Includes 360 Block &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>Features:</h3>\n<ul>\n<li>Unlimited Color Varition.</li>\n<li>Slider Enable / Disable Options</li>\n<li>Name Enable / Disable</li>\n<li>Designation Enable / Disable</li>\n<li>Social Media Enable / Disable</li>\n<li>Bio Text Enable / Disable</li>\n<li>6 Column Options</li>\n<li>Slider Row Options</li>\n<li>Slider Arrow Enable / Disable Options</li>\n<li>Slider Pagination Enable / Disable Options</li>\n<li>Slider Arrow Color Options</li>\n<li>Slider Pagination Color Options</li>\n</ul>\n<h3>Special Features:</h3>\n<ul>\n<li>Ready Visual Composer Addons , Elementor Addons, WordPress Widgets and Ready Shortcode.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:57:\"https://downloads.wordpress.org/plugin/ht-team-member.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:4:\"team\";s:4:\"team\";s:11:\"team-member\";s:11:\"Team Member\";s:7:\"widgets\";s:7:\"widgets\";s:7:\"wp-team\";s:7:\"wp team\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/ht-team-member/assets/icon-128x128.png?rev=2020992\";}}i:38;a:24:{s:4:\"name\";s:60:\"WP Templata &#8211; WordPress Template Library for Elementor\";s:4:\"slug\";s:10:\"wptemplata\";s:7:\"version\";s:5:\"1.0.4\";s:6:\"author\";s:93:\"<a href=\"https://hasthemes.com/plugins/woolentor-pro-woocommerce-page-builder/\">HasThemes</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/hasthemes/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.7.6\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:0;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:0;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:40;s:10:\"downloaded\";i:2786;s:12:\"last_updated\";s:22:\"2021-03-24 10:30am GMT\";s:5:\"added\";s:10:\"2020-03-15\";s:8:\"homepage\";s:22:\"https://hasthemes.com/\";s:17:\"short_description\";s:97:\"WP Templata is a WordPress Template Library for Elementor page builder. Very soon we will&hellip;\";s:11:\"description\";s:4617:\"<p><a href=\"https://demo.hasthemes.com/wptemplata/index.html\" rel=\"nofollow ugc\">WP Templata</a> is a WordPress Template Library for Elementor page builder. Very soon we will add templates for Gutenberg as well.</p>\n<p>This template library includes templates for all of the popular plugins and themes like HT Mega, 99fy WooCommerce theme, Woolentor, Astra WordPress Theme etc.</p>\n<p><a href=\"https://demo.hasthemes.com/wptemplata/index.html\" rel=\"nofollow ugc\">Live Preview of WP Templata</a></p>\n<p>No. of templates for the respective plugins and Themes are:</p>\n<ul>\n<li>1. HTMega       : 519</li>\n<li>2. 99FY         : 99</li>\n<li>3. Flone        : 24</li>\n<li>4. Astra        : 10</li>\n<li>5. WooLentor    : 15</li>\n<li>6. Holmes       : 6</li>\n<li>7. Zakas        : 10</li>\n<li>8. Parlo        : 3</li>\n<li>9. Hurst        : 2</li>\n<li>10. Danial      : 2</li>\n<li>11. Politic     : 5</li>\n</ul>\n<p><a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega</a><br />\nHT Mega is an Absolute Elementor addon using by more than 30,000 website. It is one of popular Elementor Addon plugin in the WordPress repository.<br />\nWp Templata includes 519 free templates for HT Mega.</p>\n<p><a href=\"https://hasthemes.com/woocommerce-themes/99fy-pro/\" rel=\"nofollow ugc\">99fy &#8211; Free WooCommerce Theme</a><br />\n99fy is free WooCommerce Theme includes 99 free home pages and 24 niche demos. Free version is available to download at WordPress Repository and Pro version is sold on our website HasThemes. 99 templates for 99fy theme is included in this template library.</p>\n<p><a href=\"https://hasthemes.com/item/flone-minimal-woocommerce-wordpress-theme/\" rel=\"nofollow ugc\">Flone &#8211; Premium WooCommerce Theme</a><br />\nFlone is a popular premium WooCommerce theme includes many niche demos. Using by more than 1000 online stores. 24 templates of Flone theme is included in the Flone WooCommerce Theme.</p>\n<p><a href=\"https://wordpress.org/themes/astra/\">Astra &#8211; WordPress Theme</a><br />\nAstra is the most popular WordPress Theme in WordPress repository developed by Brainstorm Force. More than 700,000 websites are using this theme. We have added 10 templates for Astra WordPress theme.</p>\n<p><a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooLentor &#8211; WooCommerce Page Builder &amp; Elementor Addon </a><br />\nWooLentor is the most popular WooCommerce page builder and Elementor addon. More than 15000 online stores are using Woolentor plugin to boosts sales or revenue. WP Templata includes 15 templates for Woolentor.</p>\n<p><a href=\"https://themeforest.net/item/politic-political-wordpress-theme/19378107\" rel=\"nofollow ugc\">Politic &#8211; Political WordPress Theme</a><br />\nPolitic is a premium Political WordPress Theme. WP Templata includes 5 templates for this theme. Politic theme must be installed to use this templates.</p>\n<h3>Other Themes</h3>\n<p>WP Templata includes templates for few other themes and plugins which is listed above. We will add templates for all of the popular themes and plugins templates in library.</p>\n<p><a href=\"https://demo.hasthemes.com/wptemplata/index.html\" rel=\"nofollow ugc\">Live Preview of WP Templata</a></p>\n<p>Feel free to contact us at our website <a href=\"https://hasthemes.com/\" rel=\"nofollow ugc\">HasThemes</a> for any query/suggestion/opinion.</p>\n<p>If you a plugin or theme author, you can add your plugin/theme template in WP Templata.</p>\n<h3>Looking for WordPress Themes and Plugins?</h3>\n<p>If you are looking for WordPress themes / plugins for your business you can check our bundle <a href=\"https://hasthemes.com/elementor-guru/\" rel=\"nofollow ugc\">Elementor Guru</a>. Start your online agency business without any investment for developing products.</p>\n<h3>Looking for WordPress Developers?</h3>\n<p>If you are running a web agency and want to continue your business without spending money or time, you can check our <a href=\"https://hasthemes.com/become-a-strategic-partner-of-hasthemes/\" rel=\"nofollow ugc\">strategic partners</a> page. You can focus on finding more clients while we are working for your projects.</p>\n<h3>Earn Money online</h3>\n<p>Join HasThemes Affiliate Program, and get  up to 70% commission for each referral. For a single sale you can earn up to 500USD. <a href=\"https://hasthemes.com/affiliate-program/\" rel=\"nofollow ugc\">Check our affiliate program</a></p>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:53:\"https://downloads.wordpress.org/plugin/wptemplata.zip\";s:4:\"tags\";a:5:{s:14:\"astra-template\";s:14:\"astra template\";s:9:\"elementor\";s:9:\"elementor\";s:18:\"pre-build-template\";s:18:\"pre build template\";s:8:\"template\";s:8:\"template\";s:11:\"wp-template\";s:11:\"wp template\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/wptemplata/assets/icon-128x128.jpg?rev=2261276\";}}i:39;a:24:{s:4:\"name\";s:41:\"WPForms Widget For Elementor Page Builder\";s:4:\"slug\";s:9:\"ht-wpform\";s:7:\"version\";s:5:\"1.1.0\";s:6:\"author\";s:80:\"<a href=\"https://profiles.wordpress.org/htplugins/#content-plugins\">HasTheme</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/htplugins/\";s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:0;i:4;i:1;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:1;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:3000;s:10:\"downloaded\";i:29910;s:12:\"last_updated\";s:21:\"2021-09-01 4:46am GMT\";s:5:\"added\";s:10:\"2019-03-02\";s:8:\"homepage\";s:22:\"https://hasthemes.com/\";s:17:\"short_description\";s:81:\"The WpForm is a elementor addons for Elementor page builder plugin for WordPress.\";s:11:\"description\";s:1258:\"<p>Wpform Widget is a elementor addons for elementor page bulider. It&#8217;s Help to you easily drag and drop WpForm forms from a drop down list.<br />\n<a href=\"https://wordpress.org/plugins/wpforms-lite/\">Required Plugin: WPForms</a></p>\n<blockquote><p>\n  Are you searching for WooCommerce ELementor Addon?</p>\n<p>Try to use our best WooCommerce ELementor Addon &#8211; WooLentor<br />\n  42 Custom Grid Layouts<br />\n  18 Elementor Widget<br />\n  <a href=\"https://wordpress.org/plugins/woolentor-addons/\">WooCommerce Template Builder</a></p>\n<p>  Ultimate Addons for Elementor Page Builder</p>\n<p>Don&#8217;t forgete to check our Unlimite mega addon for Elementor page Builder.<br />\n  <a href=\"https://wordpress.org/plugins/ht-mega-for-elementor/\">HT Mega – Ultimate Addons for Elementor Page Builder</a><br />\n  Includes 360 Blocke &amp; 15 Landing Pages.</p>\n</blockquote>\n<h3>Features:</h3>\n<ul>\n<li>Drag and drop the widget</li>\n<li>Custom Styling Options</li>\n<li>Show Contact form in any place on your website.</li>\n</ul>\n<h3>Need Help?</h3>\n<p>Is there any feature that you want to get in this plugin?<br />\nNeeds assistance to use this plugin?<br />\nFeel free to <a href=\"https://hasthemes.com/contact-us/\" rel=\"nofollow ugc\">Contact us</a></p>\n\";s:13:\"download_link\";s:52:\"https://downloads.wordpress.org/plugin/ht-wpform.zip\";s:4:\"tags\";a:5:{s:12:\"contact-form\";s:12:\"contact form\";s:9:\"elementor\";s:9:\"elementor\";s:16:\"elementor-addons\";s:16:\"elementor addons\";s:7:\"wpforms\";s:7:\"WPForms\";s:14:\"wpforms-widget\";s:14:\"WPForms Widget\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/ht-wpform/assets/icon-128x128.png?rev=2042626\";}}}','no'),(927,'_transient_timeout_htrp_htplugins_list_moveaddons','1653484718','no'),(928,'_transient_htrp_htplugins_list_moveaddons','a:1:{i:0;a:24:{s:4:\"name\";s:25:\"Move Addons for Elementor\";s:4:\"slug\";s:11:\"move-addons\";s:7:\"version\";s:5:\"1.2.4\";s:6:\"author\";s:47:\"<a href=\"https://moveaddons.com\">moveaddons</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/moveaddons/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:100;s:7:\"ratings\";a:5:{i:5;i:3;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:3;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:2000;s:10:\"downloaded\";i:18142;s:12:\"last_updated\";s:21:\"2022-03-23 4:01am GMT\";s:5:\"added\";s:10:\"2020-08-27\";s:8:\"homepage\";s:27:\"https://demo.moveaddons.com\";s:17:\"short_description\";s:93:\"Move Addons is a WordPress plugin for Elementor page builder, is a powerful tool that&hellip;\";s:11:\"description\";s:22357:\"<p><a href=\"https://moveaddons.com/\" rel=\"nofollow ugc\">Move Addons</a>  WP plugin for Elementor Page builder to ensure you a smooth experience with your growing WordPress website. ‘Move’ WP addon is a powerful tool that helps you to make almost every possible customization to your website without a single line of coding.</p>\n<p>Complex sets of code have been graphically presented through 40+ free widgets and lot more are coming soon. In Move addon just enable-disable, check-uncheck, drag &amp; drop, activate-deactivate are the ways of making any change or posting something new to your website.</p>\n<p>In addition, many more free and premium features are coming soon to bring your experience to the horizon.</p>\n<p><a href=\"https://demo.moveaddons.com/\" rel=\"nofollow ugc\">Live Demo</a> | <a href=\"https://doc.moveaddons.com/\" rel=\"nofollow ugc\">Documentation</a></p>\n<h3>Free Widgets</h3>\n<p><a href=\"https://demo.moveaddons.com/accordion/\" rel=\"nofollow ugc\">Accordion</a><br />\nAccordion is an awesome tool to organize the elements of pages accordingly. It helps you maximize the use of the spaces on a webpage. check the live demo for the available accordion styles.</p>\n<p><a href=\"https://demo.moveaddons.com/animated-heading/\" rel=\"nofollow ugc\">Animated heading</a><br />\nAnimated heading helps to display animated headlines on a website. Different types of styles are available in our widget.</p>\n<p><a href=\"https://demo.moveaddons.com/banner/\" rel=\"nofollow ugc\">Banner</a><br />\nA banner is a specific area where you can showcase any message, promotional offer, or call to action button for the visitors. A catchy banner will definitely maximize the customer&#8217;s engagement. We have 8 predefined banner styles.</p>\n<p><a href=\"https://demo.moveaddons.com/brand/\" rel=\"nofollow ugc\">Brand</a><br />\nBrand Logo is a very crucial section on a website. It’s to display the other brands and companies who are your partners, sponsors, supporters, or affiliates. It increases the trustworthiness and brand value of your website. 5 predefined styles are available in the brand widget.</p>\n<p><a href=\"https://demo.moveaddons.com/brand/\" rel=\"nofollow ugc\">Block Quote</a><br />\nDo you want to show some elements in your webpage from any other source? You can use Block Quote widget to do this interesting task. 9 styles are available in our demo.</p>\n<p><a href=\"https://demo.moveaddons.com/business-hours/\" rel=\"nofollow ugc\">Business hours</a><br />\nBusiness hours refer to the specific time during which a company or business remains open.  It is essential and necessary for every company to show their business hours on the website. Therefore, this widget comes in handy. You can display well-designed business hours through this widget.  It also gives you the flexibility to set the timings easily.</p>\n<p><a href=\"https://demo.moveaddons.com/button/\" rel=\"nofollow ugc\">Button</a><br />\nButtons with various sizes, shapes, colors and styles make contents attractive and eye-catching. With this unique button widget, you can easily create different types of buttons to use elsewhere in your site- page/post editor, sidebars, and template files. For this, you do not require any coding. Simply use the colorful and beautiful buttons in different positions.</p>\n<p><a href=\"https://demo.moveaddons.com/countdown/\" rel=\"nofollow ugc\">Countdown</a><br />\nCountdown Widget helps you add countdown or count-up timers to the sidebars and blog posts of your web page easily. Whether you are opening a new website or going through maintenance, a countdown timer comes in handy. With this nifty and powerful widget, you can make the countdown/count-up timer impressive and eye-catching to the viewers.</p>\n<p><a href=\"https://demo.moveaddons.com/category-list/\" rel=\"nofollow ugc\">Category List</a><br />\nShowcase different categories of your services and products in style with this superb widget. If the category lists are user-friendly, visitors will find it more convenient to view and navigate your website. This widget assists you to list the categories in a user-friendly pattern. As a webmaster, you can also add custom icons for categories and subcategories and edit them later.</p>\n<p><a href=\"https://demo.moveaddons.com/contact-form-7/\" rel=\"nofollow ugc\">Contact Form 7</a><br />\nAdd contact form to a page that is created by using Contact Form 7 plugin. We have an Elementor widget with 06 predefined styles to display contact forms in a website.</p>\n<p><a href=\"https://demo.moveaddons.com/drop-cap/\" rel=\"nofollow ugc\">Drop Cap</a><br />\nDrop Caps are big letters to use as an initial letter of passages. Drop Caps are very useful to mark important paragraph and notice the reader’s eye to that. From the two thousand years, drop caps have been used for the printed page industry.<br />\nWith the Drop Caps widget, you can create a stunning first letter and customize different drop caps attributes, such as font, label, color, background color, size, border, and so on.</p>\n<p><a href=\"https://demo.moveaddons.com/dual-button/\" rel=\"nofollow ugc\">Dual Button</a><br />\nDual Button widget allows to add two button side bay side. We have 5 predefined styles for the dua button. Display 2 buttons side by side easily using this widget.</p>\n<p><a href=\"https://demo.moveaddons.com/dual-color-headline/\" rel=\"nofollow ugc\">Dual Color Headline</a><br />\nThe more colorful the headline of the web content is, the more attractive it will look. You have the advantage of selecting the content style from multiple given layouts using this Dual Color Headline widget. Plus, you can set border and background, use various fonts, set background images, choose different thicknesses of the text, etc. with this amazing widget.</p>\n<p><a href=\"https://demo.moveaddons.com/call-to-action/\" rel=\"nofollow ugc\">Call to action</a><br />\nCall to action (CTA) button are the button on a website to lead visitors to the goal or conversion. It can be a add to cart button, sign up button, Email Sbbscription button, Call button or Download button. A call to action button plays an important role to complete a conversion of a website.</p>\n<p><a href=\"https://demo.moveaddons.com/flip-box/\" rel=\"nofollow ugc\">Flip Box</a><br />\nA flip box is a box that flips when we hover it&#8217;s area. It makes the content more interesting. We have 4 defined styles for the flip box, which can be customized easily from the elementor widget setting.</p>\n<p><a href=\"https://demo.moveaddons.com/info-box/\" rel=\"nofollow ugc\">Info Box</a><br />\nInfo box is a widgets which allows you to add inportant information on your website. We have added 3 predefined styles for the info box which can customized easily based on the requirements. Info box widgets makes it easier to display the necessary information in a smart way on a wesbite.</p>\n<p><a href=\"https://demo.moveaddons.com/headline/\" rel=\"nofollow ugc\">Heading</a><br />\nYou know, the heading is a must in any audio, video, image, or on a webpage. It works like a front-door description of your content.</p>\n<p><a href=\"https://demo.moveaddons.com/filterable-gallery/\" rel=\"nofollow ugc\">Filterable Gallery</a><br />\nFilterable Gallery is a widget which allows to add a gallery with filtering options. Photos, projects images can be displayed easily using this widget. Visitor can filter the items easily for the categories. We have 5 default styles for filterable gallery, which can be customized easily from the widget setting panel.</p>\n<p><a href=\"https://demo.moveaddons.com/faq/\" rel=\"nofollow ugc\">FAQ</a><br />\nFAQ stands for Frequently Asked Questions. FAQ widget helps to give quick answers to the common questions of the customers. This widget saves time to answer repetitive questions of your visitors. Customers can get their answers easily without asking you through your live chat or website contact form, which saves both of your and your customers valuable time and makes the sales process faster.</p>\n<p><a href=\"https://demo.moveaddons.com/fun-fact/\" rel=\"nofollow ugc\">Fun Fact</a><br />\nFun Facts is a widget to express the essential key points of a website. This widget helps to show the statistical data (like the number of products developed, no. of customers using your products, number of satisfied customers, Number of projects done, etc..) in a modern way. This is the best way to notify visitors about the key points when they are scrolling down and skimming your content. We have 11 styles available for the fun facts, you can use anyone from there and customize that based on your requirements.</p>\n<p><a href=\"https://demo.moveaddons.com/image-box/\" rel=\"nofollow ugc\">Image Box</a><br />\nIf you want to add an image box on your web page containing an image with a headline and text, look no further than this unique Image Box widget. It enables you to add images in a stylish and attractive manner. You can choose an image, set the attributes (e.g.-image size, position, etc.) and add hover animation with this widget. As regards the headline and text, you can adjust the text color, typography, spacing between texts, alignments, etc. using this distinctive widget.</p>\n<p><a href=\"https://demo.moveaddons.com/image-comparison/\" rel=\"nofollow ugc\">Image Comparison</a><br />\nThis nifty Image comparison widget allows comparison between two pieces of the images. This widget help to display the coparison between the two images.</p>\n<p><a href=\"https://demo.moveaddons.com/recent-blog/\" rel=\"nofollow ugc\">Recent Blog</a><br />\nDo you want to let your audience read the most recent blog in a faster and easier way? If you do so, this widget is the best solution. With this widget, you can list the latest blog posts with post titles, thumbnails, excerpts, authors, categories, dates, and more.</p>\n<p><a href=\"https://demo.moveaddons.com/social-media/\" rel=\"nofollow ugc\">Social Media</a><br />\nThe Social Media Widget is a simple widget that enables users to input social media URLs as well as other subscription options by showing the icons of particular social media sites. Thus, viewers can easily access the social media page from the website just by clicking the particular social media icon. This widget helps to increase the number of followers/subscribers to social media to engage with your brands. Social media helps increase brand awareness, website traffic, generate leads, boost sales, promote content, etc.</p>\n<p><a href=\"https://demo.moveaddons.com/team-member/\" rel=\"nofollow ugc\">Team Member</a><br />\nPeople want to see who is working behind a company. Meet the team page or a team section build trust about a website and it is one of the key components of a website or online relationship. The team page or team section is one of the most viewed pages of a website. Showing the team members in an enchanting design expresses your business profile. We have 5 layouts for the team member section. Check our live demo.</p>\n<p><a href=\"https://demo.moveaddons.com/testimonials/\" rel=\"nofollow ugc\">Testimonials</a><br />\nTestimonial or customer review is a section of a website that reinforces your reputation. A testimonial refers to a written or recorded statement by the satisfied customer about the products or services you offer. It plays a vital role to build complete trust or confidence in any products or services. We have 8 predefined styles for the testimonial section in the Move Addon. Check our demo to pick a style for your website.</p>\n<p><a href=\"https://demo.moveaddons.com/post-list/\" rel=\"nofollow ugc\">Post List</a><br />\nPost list is a widget to list post horizzontally or vertically in a web page using Elementor Page Builder. This widget enable the option to display post list in a unique way.</p>\n<p><a href=\"https://demo.moveaddons.com/video/\" rel=\"nofollow ugc\">Video</a><br />\nThere are a lot of benefits of adding videos to a website. Video helps to deliver the message easily, engage website visitors, build up the bond with website visitors, and increase the overall conversion.</p>\n<p><a href=\"https://demo.moveaddons.com/advanced-tab/\" rel=\"nofollow ugc\">Advanced Tab</a><br />\nAdvaynced tab widget allows to display tabs on a website in an unique way. Tab content can be shown horizontally or vertically. We have 5 different layouts for this Advanced Tab widget.</p>\n<p><a href=\"https://demo.moveaddons.com/feature-list/\" rel=\"nofollow ugc\">Feature List</a><br />\nFeature list widget helps to add the list of features of app, software, services on a website. Customers can easily understand about the feature of your product or services. Which makes the conversion time faster.</p>\n<p><a href=\"https://demo.moveaddons.com/data-table/\" rel=\"nofollow ugc\">Data table</a><br />\nData table is helps to display of information in tabular form, with rows and/or columns named. Most commonly used in financial modeling and analysis the report.</p>\n<p><a href=\"https://demo.moveaddons.com/event-calendar/\" rel=\"nofollow ugc\">Event Calendar</a><br />\nEvent calender widget allows to display the eevents is most unique way. a 3rd party plugin &#8220;Event Calender&#8221; needs to be installed to use this widget.</p>\n<p><a href=\"https://demo.moveaddons.com/mailchimp/\" rel=\"nofollow ugc\">MailChimp</a><br />\nMailchimp is the All-In-One integrated marketing platform for businesses. Visitors can subscribe to the newsletter through the form. To use this widget, MailChimp plugin needs to be installed.</p>\n<p><a href=\"https://demo.moveaddons.com/image-grid/\" rel=\"nofollow ugc\">Image Grid</a><br />\nAn image grid is a pattern consisting of horizontal and vertical lines, usually forming squares, that are used to contain images. It is an efficient element to organize images superbly. With this fantastic Image Grid widget, you can create sensational and spectacular image grids without any difficulty. This widget allows you to make image grids of multiple styles.</p>\n<p><a href=\"https://demo.moveaddons.com/image-masonry/\" rel=\"nofollow ugc\">Image Masonry</a><br />\nAs the name suggests, Image Masonry widget sets elements in the ideal position based on accessible vertical space, just like mason fitting stones in a wall. Therefore, you can decorate your web page gorgeously by building a custom masonry layout with this powerful widget. You can choose a layout for the image masonry from the available styles.</p>\n<p><a href=\"https://demo.moveaddons.com/inline-menu/\" rel=\"nofollow ugc\">Inline Menu</a><br />\nThe inline horizontal menu is an efficient way to display a menu of categories or pages highlighting particular areas of interest. This menu adds convenience for the viewers to navigate your web page. Use this nifty widget to create an excellent inline menu by modifying it according to your choice.</p>\n<p><a href=\"https://demo.moveaddons.com/news-ticker/\" rel=\"nofollow ugc\">News Ticker</a><br />\nA news ticker or crawler is a horizontal display containing texts in the middle. It is basically used to display breaking news headlines or important post titles beautifully in a scrolling way.  With this powerful widget, you can create an astonishing news ticker to show your breaking news headlines, announcements, or important post titles attractively to catch the visitors’ attention.</p>\n<p><a href=\"https://demo.moveaddons.com/page-list/\" rel=\"nofollow ugc\">Page List</a><br />\nShowing page lists is one of the best ways to let your visitors navigate the important pages easily. Using the page list widget of Move addon, you can effortlessly create a page list in a stylish and catchy way.</p>\n<p><a href=\"https://demo.moveaddons.com/user-login/\" rel=\"nofollow ugc\">User Login</a><br />\nThe user login widget helps create a custom login page that enables users to log in/log out to the web page. With this powerful widget, you can build a impressive login form according to your choice so that users can use it appropriately instead of the default WordPress login page.</p>\n<p><a href=\"https://demo.moveaddons.com/job-manager/\" rel=\"nofollow ugc\">Job Manager</a><br />\nJobs manager plugin helps to display job list in a professional way using Elementor Page builder. WP Job Manager Plugin is required to install to use this widget.</p>\n<p><a href=\"https://demo.moveaddons.com/off-canvas/\" rel=\"nofollow ugc\">Off Canvas</a><br />\nWhen the menu is being opened, the page slides out of view, revealing the menu and blocking the page from interaction. In other forms, the menu can be revealed by sliding in view, hiding the page behind it. This kind of behavior is called an &#8220;off-canvas&#8221; menu.</p>\n<p><a href=\"https://demo.moveaddons.com/tooltip/\" rel=\"nofollow ugc\">Tool Tip</a><br />\nTooltips are usually initiated in one of two ways: through a mouse-hover gesture or through a keyboard-hover gesture. A tooltip is a brief, informative message that appears when a user interacts with an element.</p>\n<h3>Premium Widgets:</h3>\n<ul>\n<li><a href=\"https://demo.moveaddons.com/comparison-table/\" rel=\"nofollow ugc\">Comparison Table</a> </li>\n<li><a href=\"https://demo.moveaddons.com/flip-carousel/\" rel=\"nofollow ugc\">Flip carousel</a> </li>\n<li><a href=\"https://demo.moveaddons.com/instagram-feed/\" rel=\"nofollow ugc\">Instagram Feed</a></li>\n<li><a href=\"https://demo.moveaddons.com/motion-text/\" rel=\"nofollow ugc\">Motion text</a> </li>\n<li><a href=\"https://demo.moveaddons.com/google-map/\" rel=\"nofollow ugc\">Google Map</a> </li>\n<li><a href=\"https://demo.moveaddons.com/interactive-cards/\" rel=\"nofollow ugc\">Interactive Cards</a> </li>\n<li><a href=\"https://demo.moveaddons.com/image-marker/\" rel=\"nofollow ugc\">Image Marker</a> </li>\n<li><a href=\"https://demo.moveaddons.com/image-scrolling/\" rel=\"nofollow ugc\">Image Scrolling</a></li>\n<li><a href=\"https://demo.moveaddons.com/panel-slider/\" rel=\"nofollow ugc\">Pannel Slider</a> </li>\n<li><a href=\"https://demo.moveaddons.com/post-slider/\" rel=\"nofollow ugc\">Post Slider</a> </li>\n<li><a href=\"https://demo.moveaddons.com/product-carousel/\" rel=\"nofollow ugc\">Product Carousel</a> </li>\n<li><a href=\"https://demo.moveaddons.com/product-category/\" rel=\"nofollow ugc\">Product Category</a> </li>\n<li><a href=\"https://demo.moveaddons.com/protected-content/\" rel=\"nofollow ugc\">Protected content</a> </li>\n<li><a href=\"https://demo.moveaddons.com/timeline-content/\" rel=\"nofollow ugc\">Timeline content</a></li>\n<li><a href=\"https://demo.moveaddons.com/twitter-feed/\" rel=\"nofollow ugc\">Twitter Feed</a> </li>\n<li><a href=\"https://demo.moveaddons.com/user-register/\" rel=\"nofollow ugc\">User Login</a> </li>\n<li><a href=\"https://demo.moveaddons.com/divider/\" rel=\"nofollow ugc\">Divider</a></li>\n<li><a href=\"https://demo.moveaddons.com/interactive-content/\" rel=\"nofollow ugc\">Interactive Content</a></li>\n<li><a href=\"https://demo.moveaddons.com/mini-cart/\" rel=\"nofollow ugc\">Mini Cart</a></li>\n<li><a href=\"https://demo.moveaddons.com/mega-menu/\" rel=\"nofollow ugc\">Mega Menu</a></li>\n<li><a href=\"https://demo.moveaddons.com/onepage-navigation/\" rel=\"nofollow ugc\">Onepage Navigation</a></li>\n<li><a href=\"https://demo.moveaddons.com/pricing-menu/\" rel=\"nofollow ugc\">Price Menu</a></li>\n<li><a href=\"https://demo.moveaddons.com/pricing-list/\" rel=\"nofollow ugc\">Pricing List</a></li>\n<li><a href=\"https://demo.moveaddons.com/pricing-table/\" rel=\"nofollow ugc\">Pricing table</a></li>\n<li><a href=\"https://demo.moveaddons.com/user-register/\" rel=\"nofollow ugc\">User Register</a></li>\n<li><a href=\"https://demo.moveaddons.com/mega-menu-vertical/\" rel=\"nofollow ugc\">Vertical Menu</a></li>\n<li><a href=\"https://demo.moveaddons.com/panel-slider/\" rel=\"nofollow ugc\">Panel Slider</a></li>\n<li><a href=\"https://demo.moveaddons.com/product-list/\" rel=\"nofollow ugc\">Product list</a></li>\n<li><a href=\"https://demo.moveaddons.com/product-tab/\" rel=\"nofollow ugc\">Product tab</a></li>\n<li>Light Box Modal (Coming Soon)</li>\n<li>Post Grid(Coming Soon) </li>\n<li>Partial effect (Coming Soon)</li>\n<li>Facebook Feed(Coming Soon)</li>\n<li>Creative button (Coming Soon)</li>\n<li>Advanced Menu (Coming Soon)</li>\n<li>Advanced Toggle (Coming Soon)</li>\n</ul>\n<h3>Template Library (Included in Pro Version only) :</h3>\n<ol>\n<li><a href=\"https://library.moveaddons.com/app/\" rel=\"nofollow ugc\">App</a></li>\n<li><a href=\"https://library.moveaddons.com/business/\" rel=\"nofollow ugc\">Business</a></li>\n<li><a href=\"https://library.moveaddons.com/car-repair/\" rel=\"nofollow ugc\">Car Repair</a></li>\n<li><a href=\"https://library.moveaddons.com/charity/\" rel=\"nofollow ugc\">Charity</a></li>\n<li><a href=\"https://library.moveaddons.com/consultant-business/\" rel=\"nofollow ugc\">Consulting Business</a></li>\n<li><a href=\"https://library.moveaddons.com/construction/\" rel=\"nofollow ugc\">Construction</a></li>\n<li><a href=\"https://library.moveaddons.com/doctor/\" rel=\"nofollow ugc\">Doctor</a></li>\n<li><a href=\"https://library.moveaddons.com/gym/\" rel=\"nofollow ugc\">GYM</a></li>\n<li><a href=\"https://library.moveaddons.com/handyman/\" rel=\"nofollow ugc\">Handyman</a></li>\n<li><a href=\"https://library.moveaddons.com/home-plants/\" rel=\"nofollow ugc\">Home Plants</a></li>\n<li><a href=\"https://library.moveaddons.com/kid-school/\" rel=\"nofollow ugc\">Kid School</a></li>\n<li><a href=\"https://library.moveaddons.com/music/\" rel=\"nofollow ugc\">Music</a></li>\n<li><a href=\"https://library.moveaddons.com/online-watch-shop/\" rel=\"nofollow ugc\">Online Watch Shop</a></li>\n<li><a href=\"https://library.moveaddons.com/portfolio/\" rel=\"nofollow ugc\">Portfolio</a></li>\n<li><a href=\"https://library.moveaddons.com/photography/\" rel=\"nofollow ugc\">Photography</a></li>\n<li><a href=\"https://library.moveaddons.com/restaurant/\" rel=\"nofollow ugc\">Restaurant</a></li>\n<li><a href=\"https://library.moveaddons.com/spa/\" rel=\"nofollow ugc\">Spa</a></li>\n<li><a href=\"https://library.moveaddons.com/technology-store/\" rel=\"nofollow ugc\">Technology Store</a></li>\n<li><a href=\"https://library.moveaddons.com/yoga/\" rel=\"nofollow ugc\">Yoga</a></li>\n<li><a href=\"https://library.moveaddons.com/wedding/\" rel=\"nofollow ugc\">Wedding</a></li>\n<li><a href=\"https://library.moveaddons.com/wine/\" rel=\"nofollow ugc\">Wine</a></li>\n<li><a href=\"https://library.moveaddons.com/woman-fashion/\" rel=\"nofollow ugc\">Woman Fashion</a></li>\n</ol>\n<p>More ready templates are coming&#8230;<br />\n<a href=\"https://moveaddons.com/template-library.html\" rel=\"nofollow ugc\">Check the full list</a> of our template library.</p>\n\";s:13:\"download_link\";s:54:\"https://downloads.wordpress.org/plugin/move-addons.zip\";s:4:\"tags\";a:5:{s:9:\"elementor\";s:9:\"elementor\";s:16:\"elementor-addons\";s:16:\"elementor addons\";s:16:\"elementor-blocks\";s:16:\"Elementor Blocks\";s:22:\"elementor-page-builder\";s:22:\"elementor page builder\";s:17:\"elementor-widgets\";s:17:\"elementor widgets\";}s:11:\"donate_link\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:64:\"https://ps.w.org/move-addons/assets/icon-128x128.png?rev=2369985\";s:2:\"2x\";s:64:\"https://ps.w.org/move-addons/assets/icon-256x256.png?rev=2369917\";}}}','no'),(943,'htmega_do_activation_redirect_pro','1','yes'),(950,'_transient_timeout_htmega_template_info','1652967305','no');
INSERT INTO `wp_options` VALUES (951,'_transient_htmega_template_info','a:3:{s:7:\"notices\";a:1:{i:0;a:5:{s:5:\"title\";s:12:\"Cyber Monday\";s:11:\"description\";s:1:\"#\";s:11:\"bannerimage\";s:1:\"#\";s:10:\"bannerlink\";s:1:\"#\";s:6:\"status\";s:1:\"0\";}}s:8:\"pro_link\";a:1:{i:0;a:1:{s:3:\"url\";s:42:\"https://hasthemes.com/plugins/ht-mega-pro/\";}}s:9:\"templates\";a:524:{i:0;a:17:{s:2:\"id\";s:17:\"agency_45d8s2bj95\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency.png\";s:9:\"fullimage\";s:66:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/agency/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:4:\"home\";i:1;s:6:\"agency\";i:2;s:12:\"landing page\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:1;a:17:{s:2:\"id\";s:25:\"agency_aboutus_n8m2kmxbz8\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-aboutus.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-agency/about-us/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:5:\"about\";i:1;s:4:\"page\";i:2;s:8:\"about us\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:2;a:17:{s:2:\"id\";s:27:\"agency_contactus_gvp6vkz39j\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-contactus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-agency/contact-us/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:7:\"contact\";i:1;s:4:\"page\";i:2;s:10:\"contact us\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:3;a:17:{s:2:\"id\";s:25:\"agency_service_etqju45qvp\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-agency/service/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:7:\"service\";i:1;s:4:\"page\";i:2;s:12:\"service page\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:4;a:17:{s:2:\"id\";s:20:\"carpenter_2kemcu3f55\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/carpenter/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:4:\"home\";i:2;s:4:\"page\";i:3;s:12:\"landing page\";i:4;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:5;a:17:{s:2:\"id\";s:28:\"carpenter_gallery_r95zup934a\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:12:\"Gallery Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-gallery.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-carpenter/gallery/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:4:\"page\";i:2;s:7:\"gallery\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:6;a:17:{s:2:\"id\";s:28:\"carpenter_service_9d3h95pvjz\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-carpenter/service/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:7;a:17:{s:2:\"id\";s:30:\"carpenter_contactus_mgcbf4yg3b\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-carpenter/contact-us/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:8;a:17:{s:2:\"id\";s:28:\"carpenter_aboutus_xk8t76bfq8\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-carpenter/about-us/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:9;a:17:{s:2:\"id\";s:18:\"charity_n3er8mc5cj\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/charity/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:12:\"landing page\";i:4;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:10;a:17:{s:2:\"id\";s:24:\"charity_cause_v4j4x3nkgg\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:10:\"Cause Page\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-cause.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-cause.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-charity/cause/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:10:\"cause page\";i:1;s:5:\"cause\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:11;a:17:{s:2:\"id\";s:24:\"charity_event_4tmcyzb49m\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:10:\"Event Page\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-event.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-charity/event/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:12;a:17:{s:2:\"id\";s:28:\"charity_volunteer_kzjb9qj5h8\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:14:\"Volunteer Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-volunteer.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-volunteer.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-charity/volunteer/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:14:\"volunteer page\";i:1;s:9:\"volunteer\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:13;a:17:{s:2:\"id\";s:26:\"charity_gallery_2rk36ac49b\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:12:\"Gallery Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-gallery.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-charity/gallery/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:7:\"gallery\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:14;a:17:{s:2:\"id\";s:26:\"charity_aboutus_jem34qmthq\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-aboutus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-charity/about-us/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:15;a:17:{s:2:\"id\";s:28:\"charity_contactus_769kcm8gky\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-contactus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-charity/contact-us/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:16;a:17:{s:2:\"id\";s:27:\"cleaning_service_g8m6v9dchv\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/cleaning-service/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:17;a:17:{s:2:\"id\";s:31:\"cleaning_servicepage_q9a9swt5h2\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-servicepage.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-servicepage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-cleaning/service/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:18;a:17:{s:2:\"id\";s:29:\"cleaning_contactus_xzgd43g5dz\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-contactus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-cleaning/contact-us/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:19;a:17:{s:2:\"id\";s:27:\"cleaning_aboutus_qyuvwz3nhk\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-aboutus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-cleaning/about-us/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:20;a:17:{s:2:\"id\";s:23:\"construction_x8g564jfuf\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/construction/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:5:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:21;a:17:{s:2:\"id\";s:31:\"construction_service_uqquxwb3sd\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-construction/service/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:22;a:17:{s:2:\"id\";s:31:\"construction_aboutus_b6ekh8935j\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-aboutus.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-construction/about/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:23;a:17:{s:2:\"id\";s:33:\"construction_contactus_ydrrbg84f7\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-contactus.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-construction/contact/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:24;a:17:{s:2:\"id\";s:20:\"corporate_znr56pbqm8\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/corporate/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:7:\"landing\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:25;a:17:{s:2:\"id\";s:28:\"corporate_service_pcpk4u7eak\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-corporate/service/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:26;a:17:{s:2:\"id\";s:30:\"corporate_portfolio_3y4xbbdz38\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-portfolio.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-portfolio.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-corporate/portfolio/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:14:\"portfolio page\";i:1;s:9:\"portfolio\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:27;a:17:{s:2:\"id\";s:25:\"corporate_team_pqr5wjat4y\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:11:\"Team Member\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-team.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-team.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-corporate/team/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:5:{i:0;s:16:\"team member page\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:4:\"page\";i:4;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:28;a:17:{s:2:\"id\";s:28:\"corporate_aboutus_jxs7r3m5at\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-corporate/about-us/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:29;a:17:{s:2:\"id\";s:30:\"corporate_contactus_tazs9b3d4v\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-corporate/contact-us/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:30;a:17:{s:2:\"id\";s:20:\"education_8rfettzq6r\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/education/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:31;a:17:{s:2:\"id\";s:26:\"education_event_8aja65gjpr\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-event.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-education/event/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:32;a:17:{s:2:\"id\";s:28:\"education_teacher_55bbjt6jcf\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:7:\"Teacher\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-teacher.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-teacher.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-education/teacher/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:12:\"teacher page\";i:1;s:7:\"teacher\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:33;a:17:{s:2:\"id\";s:27:\"education_course_8n699mwe69\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:6:\"Course\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-course.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-course.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-education/course/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:11:\"course page\";i:1;s:6:\"course\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:34;a:17:{s:2:\"id\";s:28:\"education_aboutus_t4azaf84uu\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-education/about-us/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:35;a:17:{s:2:\"id\";s:30:\"education_contactus_7p5mc2s3zs\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-education/contact-us/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:36;a:17:{s:2:\"id\";s:16:\"event_522h7svr4j\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-page.png\";s:9:\"fullimage\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/event-page/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:37;a:17:{s:2:\"id\";s:24:\"event_speaker_55ufe49m8n\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:7:\"Speaker\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-speaker.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-speaker.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-event/speaker/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:12:\"speaker page\";i:1;s:7:\"speaker\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:38;a:17:{s:2:\"id\";s:26:\"event_eventpage_vps3p2s22g\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:10:\"Event Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-eventpage.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-eventpage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/ht-event/event/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:39;a:17:{s:2:\"id\";s:26:\"event_contactus_2ujgh8s2dw\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-contactus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-event/contact/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:40;a:17:{s:2:\"id\";s:24:\"event_aboutus_a67zz54e6g\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-aboutus.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/ht-event/about/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:41;a:17:{s:2:\"id\";s:20:\"gardening_kws6z7rc9g\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/gardening/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:6:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"gardening\";i:5;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:42;a:17:{s:2:\"id\";s:28:\"gardening_service_43ucbz93rr\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-gardening/service/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:43;a:17:{s:2:\"id\";s:28:\"gardening_aboutus_w5h4mc4225\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-gardening/about/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:44;a:17:{s:2:\"id\";s:30:\"gardening_contactus_grjme9fsm3\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-gardening/contact/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:45;a:17:{s:2:\"id\";s:18:\"medical_w65t8v825k\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/medical/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:46;a:17:{s:2:\"id\";s:26:\"medical_service_b7j9ty4qeu\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-service.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-medical/service/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:47;a:17:{s:2:\"id\";s:28:\"medical_contactus_y23y63w2qn\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-contactus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-medical/contact/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:48;a:17:{s:2:\"id\";s:26:\"medical_aboutus_ymcvt43pdx\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-aboutus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-medical/about/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:49;a:17:{s:2:\"id\";s:20:\"political_pjek38pd8w\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/political/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:50;a:17:{s:2:\"id\";s:26:\"political_event_nx3h3ve89q\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-event.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-political/event/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:51;a:17:{s:2:\"id\";s:28:\"political_gallery_ubb35z3qe6\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:7:\"Gallery\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-gallery.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-political/gallery/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:7:\"gallery\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:52;a:17:{s:2:\"id\";s:28:\"political_aboutus_k68jqsht87\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-political/about-us/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:53;a:17:{s:2:\"id\";s:30:\"political_contactus_yqsx2am63e\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-political/contact-us/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:54;a:17:{s:2:\"id\";s:20:\"portfolio_v2tg9dwcwe\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-page.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/portfolio-page/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:55;a:17:{s:2:\"id\";s:28:\"portfolio_aboutus_vq38yq7y9t\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-portfolio/about-us/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:56;a:17:{s:2:\"id\";s:30:\"portfolio_portfolio_qgr95dqrxj\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-portfoliopage.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-portfoliopage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-portfolio/portfolio/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:14:\"portfolio page\";i:1;s:9:\"portfolio\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:57;a:17:{s:2:\"id\";s:28:\"portfolio_service_7wgc9597sk\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-portfolio/service/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:58;a:17:{s:2:\"id\";s:30:\"portfolio_contactus_my822kr36d\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-portfolio/contact-us/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:59;a:17:{s:2:\"id\";s:17:\"repair_a9q9e56ee7\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair.png\";s:9:\"fullimage\";s:66:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/repair/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"page\";i:4;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:60;a:17:{s:2:\"id\";s:25:\"repair_service_eq47kz447a\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-repair/service/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:61;a:17:{s:2:\"id\";s:25:\"repair_aboutus_t2rp7mzmn3\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-aboutus.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/ht-repair/about/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:62;a:17:{s:2:\"id\";s:27:\"repair_contactus_wyq6te4d8m\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-contactus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-repair/contact/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:63;a:17:{s:2:\"id\";s:19:\"software_vb4agp6wbp\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:4:\"Home\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/htmega/software/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:7:\"landing\";i:4;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:64;a:17:{s:2:\"id\";s:27:\"software_service_htphkdaz63\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-software/service/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:65;a:17:{s:2:\"id\";s:27:\"software_pricing_a8kwetru2w\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:12:\"Pricing Plan\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-pricingplan.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-pricingplan.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/ht-software/pricing-plan/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing plan page\";i:1;s:7:\"pricing\";i:2;s:4:\"plan\";i:3;s:4:\"page\";i:4;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:66;a:17:{s:2:\"id\";s:29:\"software_contactus_4fkuuga2ab\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-contactus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-software/contact-us/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:67;a:17:{s:2:\"id\";s:27:\"software_aboutus_2fac7pq3mq\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-aboutus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-software/about-us/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:68;a:17:{s:2:\"id\";s:21:\"travelling_ymr5grsutm\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling.png\";s:9:\"fullimage\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/travelling/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"page\";i:4;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:69;a:17:{s:2:\"id\";s:29:\"travelling_service_78nc6prkbm\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-travel/service/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:70;a:17:{s:2:\"id\";s:29:\"travelling_aboutus_479unvj6w5\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-aboutus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/ht-travel/about/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:71;a:17:{s:2:\"id\";s:31:\"travelling_contactus_d85zbtkms9\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-contactus.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-travel/contact/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:72;a:17:{s:2:\"id\";s:26:\"ashram_buddhist_y66ev99gbj\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/buddhist.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/buddhist.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:6:\"ashram\";i:5;s:8:\"buddhist\";i:6;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:73;a:17:{s:2:\"id\";s:34:\"ashram_buddhist_program_1a6pml2e3o\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:7:\"Program\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_program.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_program.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/program-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:12:\"program page\";i:1;s:7:\"program\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:74;a:17:{s:2:\"id\";s:35:\"ashram_buddhist_about_us_x761aavx58\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:75;a:17:{s:2:\"id\";s:37:\"ashram_buddhist_contact_us_y25qvjt4it\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:76;a:17:{s:2:\"id\";s:28:\"broadband_telecom_ua8s5hmv98\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadbandtelecom.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadbandtelecom.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:4:\"home\";i:4;s:9:\"broadband\";i:5;s:17:\"broadband telecom\";i:6;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:77;a:17:{s:2:\"id\";s:36:\"broadband_telecom_service_9cpi1ydrqb\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_service.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/service-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:78;a:17:{s:2:\"id\";s:37:\"broadband_telecom_about_us_vsqp66ef31\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_about_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/about-us-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:79;a:17:{s:2:\"id\";s:39:\"broadband_telecom_contact_us_ccq31rgdsd\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:89:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_contact_us.png\";s:9:\"fullimage\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:59:\"http://demo.wphash.com/htmega/contact-us-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:80;a:17:{s:2:\"id\";s:30:\"campgrounds_camping_hcpk4m63xu\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgroundsandcamping.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgroundsandcamping.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:4:\"page\";i:5;s:11:\"campgrounds\";i:6;s:7:\"camping\";i:7;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:81;a:17:{s:2:\"id\";s:45:\"campgrounds_and_camping_activities_kw1iw1w5om\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:10:\"Activities\";s:9:\"thumbnail\";s:95:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_activities.png\";s:9:\"fullimage\";s:94:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_activities.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:65:\"http://demo.wphash.com/htmega/activities-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:5:{i:0;s:10:\"activities\";i:1;s:4:\"page\";i:2;s:11:\"campgrounds\";i:3;s:7:\"camping\";i:4;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:82;a:17:{s:2:\"id\";s:43:\"campgrounds_and_camping_about_us_k88jokwiry\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:93:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_about_us.png\";s:9:\"fullimage\";s:92:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:63:\"http://demo.wphash.com/htmega/about-us-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:11:\"campgrounds\";i:4;s:7:\"camping\";i:5;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:83;a:17:{s:2:\"id\";s:45:\"campgrounds_and_camping_contact_us_46xcu9c7g3\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:95:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_contact_us.png\";s:9:\"fullimage\";s:94:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:65:\"http://demo.wphash.com/htmega/contact-us-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:11:\"campgrounds\";i:4;s:7:\"camping\";i:5;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:84;a:17:{s:2:\"id\";s:21:\"dairy_farm_5zmthqw83e\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairyfarm.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairyfarm.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:7:\"landing\";i:4;s:4:\"home\";i:5;s:10:\"dairy farm\";i:6;s:5:\"dairy\";i:7;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:85;a:17:{s:2:\"id\";s:29:\"dairy_farm_service_7bz4tbo6fw\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/service-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:86;a:17:{s:2:\"id\";s:30:\"dairy_farm_about_us_1dqiqkoyxg\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_about_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/about-us-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:87;a:17:{s:2:\"id\";s:32:\"dairy_farm_contact_us_cswif0ssy5\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_contact_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/contact-us-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:88;a:17:{s:2:\"id\";s:41:\"dermatology_clinic_cosmetology_peg2kmxsuv\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_clinic_cosmetology.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_clinic_cosmetology.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:4:\"home\";i:4;s:34:\"dermatology clinic and cosmetology\";i:5;s:11:\"dermatology\";i:6;s:6:\"clinic\";i:7;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:89;a:17:{s:2:\"id\";s:30:\"dermatology_service_5laeueg3ds\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_service.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:69:\"http://demo.wphash.com/htmega/service-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:90;a:17:{s:2:\"id\";s:31:\"dermatology_about_us_484rfxkm2e\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_about_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:70:\"http://demo.wphash.com/htmega/about-us-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:91;a:17:{s:2:\"id\";s:33:\"dermatology_contact_us_0j7x4xdglg\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_contact_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:72:\"http://demo.wphash.com/htmega/contact-us-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:92;a:17:{s:2:\"id\";s:24:\"environmental_qeq23ubt9g\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:93;a:17:{s:2:\"id\";s:30:\"environmental_event_ej76jon9c2\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_event.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/event-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:94;a:17:{s:2:\"id\";s:32:\"environmental_project_juelxbd9j5\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:12:\"Project Page\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_project.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_project.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/project-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:12:\"project page\";i:1;s:7:\"project\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:95;a:17:{s:2:\"id\";s:33:\"environmental_about_us_759fe54f5s\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_about_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/about-us-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:96;a:17:{s:2:\"id\";s:35:\"environmental_contact_us_al5tklwk8n\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_contact_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/contact-us-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:97;a:17:{s:2:\"id\";s:23:\"fire_station_u6wtkus29f\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:12:\"fire station\";i:5;s:4:\"fire\";i:6;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:98;a:17:{s:2:\"id\";s:31:\"fire_station_service_vq26ims8uo\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/service-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:99;a:17:{s:2:\"id\";s:32:\"fire_station_about_us_6j3uuf9e6n\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_about_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/about-us-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:100;a:17:{s:2:\"id\";s:34:\"fire_station_contact_us_45y487wwve\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_contact_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/contact-us-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:101;a:17:{s:2:\"id\";s:18:\"funeral_wj7c4b6vam\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:102;a:17:{s:2:\"id\";s:26:\"funeral_service_skd4dobrj2\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_service.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/service-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:103;a:17:{s:2:\"id\";s:27:\"funeral_about_us_f4raq5yudl\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_about_us.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/about-us-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:12:\"abut us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:104;a:17:{s:2:\"id\";s:29:\"funeral_contact_us_nqlzm2zi50\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_contact_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/contact-us-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:105;a:17:{s:2:\"id\";s:20:\"insurance_wmgv2v6y6q\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:106;a:17:{s:2:\"id\";s:28:\"insurance_service_j848rhks4p\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:107;a:17:{s:2:\"id\";s:29:\"insurance_about_us_06nxl45xwk\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/about-us-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:108;a:17:{s:2:\"id\";s:31:\"insurance_contact_us_ej1zdfy59o\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:109;a:17:{s:2:\"id\";s:19:\"law_firm_yhyqa3a493\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/htmega/law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:8:\"law firm\";i:5;s:3:\"law\";i:6;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:110;a:17:{s:2:\"id\";s:27:\"law_firm_service_s4sz8oj7x5\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/service-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:111;a:17:{s:2:\"id\";s:28:\"law_firm_about_us_ny8w98jawa\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_about_us.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/about-us-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:112;a:17:{s:2:\"id\";s:30:\"law_firm_contact_us_n754ssryq1\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_contact_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/contact-us-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:113;a:17:{s:2:\"id\";s:25:\"moving_storage_4dc6r8g7h4\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:6:\"moving\";i:5;s:7:\"storage\";i:6;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:114;a:17:{s:2:\"id\";s:33:\"moving_storage_service_9cwu7cde8o\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_service.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/service-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:115;a:17:{s:2:\"id\";s:34:\"moving_storage_about_us_xh466hvgq1\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_about_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/about-us-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:116;a:17:{s:2:\"id\";s:36:\"moving_storage_contact_us_4zho4d9ae3\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_contact_us.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/contact-us-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:117;a:17:{s:2:\"id\";s:31:\"print_design_service_rcmw2zj6f2\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/printdesign.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/printdesign.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:5:\"print\";i:5;s:6:\"design\";i:6;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:118;a:17:{s:2:\"id\";s:31:\"print_design_service_848ckzji8i\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:7:\"service\";i:1;s:4:\"page\";i:2;s:12:\"service page\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:119;a:17:{s:2:\"id\";s:32:\"print_design_about_us_ukv59ub25v\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_about_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/about-us-print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:120;a:17:{s:2:\"id\";s:34:\"print_design_contact_us_0veko4wb65\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_contact_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:62:\"http://demo.wphash.com/htmega/contact-us-print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:121;a:17:{s:2:\"id\";s:26:\"roofing_service_z54h57u7wv\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofingservice.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofingservice.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:122;a:17:{s:2:\"id\";s:34:\"roofing_service_service_1r4kph9di0\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_service.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/service-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:123;a:17:{s:2:\"id\";s:35:\"roofing_service_about_us_7fkopysio3\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:124;a:17:{s:2:\"id\";s:37:\"roofing_service_contact_us_mijd6iffn2\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:125;a:17:{s:2:\"id\";s:21:\"safari_zoo_9w8zcq64kb\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safarizoo.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safarizoo.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:10:\"safari zoo\";i:5;s:3:\"zoo\";i:6;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:126;a:17:{s:2:\"id\";s:29:\"safari_zoo_service_rw1iw5acba\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/service-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:7:\"service\";i:1;s:12:\"service page\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:127;a:17:{s:2:\"id\";s:30:\"safari_zoo_about_us_p8sjo573uu\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_about_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/about-us-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:128;a:17:{s:2:\"id\";s:32:\"safari_zoo_contact_us_bnzz9pjhi2\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_contact_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/contact-us-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:129;a:17:{s:2:\"id\";s:22:\"senior_care_8wqrgx78kn\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:11:\"senior care\";i:5;s:6:\"senior\";i:6;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:130;a:17:{s:2:\"id\";s:30:\"senior_care_service_c7xc5vzx3f\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_service.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/contact-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:12:\"Service Page\";i:1;s:4:\"page\";i:2;s:7:\"service\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:131;a:17:{s:2:\"id\";s:31:\"senior_care_about_us_ksuhkf3m7k\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_about_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/about-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:132;a:17:{s:2:\"id\";s:33:\"senior_care_contact_us_2hjxs7y2lc\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_contact_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/contact-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:15:\"Contact Us Page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:133;a:17:{s:2:\"id\";s:24:\"steel_factory_ds9by3swts\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steelfactory.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steelfactory.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:5:\"steel\";i:5;s:7:\"factory\";i:6;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:134;a:17:{s:2:\"id\";s:30:\"steel_factory_range_bkkwuyg7b1\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:10:\"Range Page\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_range.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_range.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/our-range-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:10:\"range page\";i:1;s:4:\"page\";i:2;s:5:\"range\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:135;a:17:{s:2:\"id\";s:32:\"steel_factory_service_chv1ay37x4\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_service.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/service-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:136;a:17:{s:2:\"id\";s:33:\"steel_factory_about_us_9bnq7suh9h\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_about_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/about-us-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:137;a:17:{s:2:\"id\";s:35:\"steel_factory_contact_us_ijz1j3zt3w\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_contact_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/contact-us-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:138;a:17:{s:2:\"id\";s:20:\"tailoring_r5kn76pgyj\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:139;a:17:{s:2:\"id\";s:28:\"tailoring_service_6ucymgngmi\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:140;a:17:{s:2:\"id\";s:29:\"tailoring_about_us_v98sss0o3s\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/about-us-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:141;a:17:{s:2:\"id\";s:31:\"tailoring_contact_us_xsmn6eeeh0\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:142;a:17:{s:2:\"id\";s:20:\"transport_f7dtapk7e2\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:143;a:17:{s:2:\"id\";s:28:\"transport_service_nnxpu7qkk3\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:144;a:17:{s:2:\"id\";s:29:\"transport_about_us_6hffpo06x9\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:145;a:17:{s:2:\"id\";s:31:\"transport_contact_us_fl22j3z9b9\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:146;a:17:{s:2:\"id\";s:28:\"yacht_boat_rental_8dzm6gzsht\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:4:\"Home\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yachtboatrental.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yachtboatrental.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/yacht-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:17:\"yacht boat rental\";i:5;s:5:\"yacht\";i:6;s:4:\"boat\";i:7;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:147;a:17:{s:2:\"id\";s:24:\"yacht_service_pg0yu9xx39\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_service.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/service-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:148;a:17:{s:2:\"id\";s:25:\"yacht_about_us_0u6ugwpvob\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_about_us.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/about-us-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:149;a:17:{s:2:\"id\";s:27:\"yacht_contact_us_t7lqdcydyy\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_contact_us.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:63:\"http://demo.wphash.com/htmega/contact-us-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:150;a:17:{s:2:\"id\";s:15:\"yoga_85b2zwxxs3\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:65:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga.png\";s:9:\"fullimage\";s:64:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:35:\"http://demo.wphash.com/htmega/yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:151;a:17:{s:2:\"id\";s:23:\"yoga_classes_15486fnbmu\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:7:\"Classes\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_classes.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_classes.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/classes-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:12:\"Classes Page\";i:1;s:4:\"page\";i:2;s:7:\"classes\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:152;a:17:{s:2:\"id\";s:24:\"yoga_about_us_w1waenl4ng\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_about_us.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/about-us-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:153;a:17:{s:2:\"id\";s:26:\"yoga_contact_us_iywhig6o9t\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_contact_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/contact-us-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:154;a:17:{s:2:\"id\";s:31:\"interior_design_home_v7m5g5qx2c\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_home.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:6:\"design\";i:5;s:8:\"interior\";i:6;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:155;a:17:{s:2:\"id\";s:34:\"interior_design_service_5z8e4htc9q\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_service.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/service-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:156;a:17:{s:2:\"id\";s:37:\"interior_design_contact_us_5w6622qemx\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:157;a:17:{s:2:\"id\";s:35:\"interior_design_about_us_62jvrrp4b5\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:158;a:17:{s:2:\"id\";s:22:\"bakery_home_py9a5gyauv\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_home.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:159;a:17:{s:2:\"id\";s:25:\"bakery_service_t7jpyf6ay5\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/service-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:160;a:17:{s:2:\"id\";s:26:\"bakery_about_us_t2ujbhvdzd\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_about_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/about-us-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:161;a:17:{s:2:\"id\";s:28:\"bakery_contact_us_29amnkf6ua\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_contact_us.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/contact-us-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:162;a:17:{s:2:\"id\";s:20:\"pool_home_kxc2e7umyj\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_home.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:4:\"home\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:163;a:17:{s:2:\"id\";s:23:\"pool_service_dzs7253xu6\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_service.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/service-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:164;a:17:{s:2:\"id\";s:24:\"pool_about_us_ch6pve93p4\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_about_us.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/about-us-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:165;a:17:{s:2:\"id\";s:26:\"pool_contact_us_9k3en4x3hk\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_contact_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/contact-us-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:166;a:17:{s:2:\"id\";s:28:\"accordion_style_1_vs4ekp4ga5\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Accordion Style 1 (Icon Left )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:167;a:17:{s:2:\"id\";s:28:\"accordion_style_2_j36hbukkxn\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Accordion Style 1 (Icon Right )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:168;a:17:{s:2:\"id\";s:28:\"accordion_style_3_v82jmzxvsc\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:40:\"Accordion Style 1 ( Elementor Template )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:169;a:17:{s:2:\"id\";s:28:\"accordion_style_4_ptjm53pu2f\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Accordion Style 1 ( Round Shape)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:170;a:17:{s:2:\"id\";s:28:\"accordion_style_5_5jz6m7vzn7\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Accordion Style 1 (Transparent)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:171;a:17:{s:2:\"id\";s:28:\"accordion_style_6_ky8ay62h8h\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Accordion Style 1 (Box Shadow)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_6.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:172;a:17:{s:2:\"id\";s:28:\"accordion_style_7_nu9y2d3g32\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:33:\"Accordion Image Gallery - Style 2\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_7.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:173;a:17:{s:2:\"id\";s:28:\"accordion_style_8_4yzrufq88c\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:36:\"Image Accordion (Vertical) - Style 3\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_8.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:174;a:17:{s:2:\"id\";s:28:\"accordion_style_9_uss355wf4w\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:38:\"Image Accordion (Horizontal) - Style 4\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_9.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:175;a:17:{s:2:\"id\";s:35:\"animated_heading_style_1_995df22b5q\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:176;a:17:{s:2:\"id\";s:35:\"animated_heading_style_2_5ae28kvwj9\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:177;a:17:{s:2:\"id\";s:35:\"animated_heading_style_3_cu4bzem6y4\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Animated Heading Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:178;a:17:{s:2:\"id\";s:35:\"animated_heading_style_4_r6nfnt382r\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Animated Heading Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:179;a:17:{s:2:\"id\";s:35:\"animated_heading_style_5_acftd9yg2h\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Animated Heading Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:180;a:17:{s:2:\"id\";s:35:\"animated_heading_style_6_sxvs9v8z93\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style Six\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_6.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:181;a:17:{s:2:\"id\";s:35:\"animated_heading_style_7_zda7vf847d\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Animated Heading Style Seven\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_7.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:182;a:17:{s:2:\"id\";s:25:\"banner_style_1_aa4jch7aru\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Banner Default Style\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:183;a:17:{s:2:\"id\";s:25:\"banner_style_2_aqf48sdwqk\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Banner Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:184;a:17:{s:2:\"id\";s:25:\"banner_style_3_6t2ndkqsgr\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Banner Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:185;a:17:{s:2:\"id\";s:25:\"banner_style_4_2h6ymfs6gg\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Banner Style Four\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_4.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:186;a:17:{s:2:\"id\";s:29:\"blockquote_style_1_5vw7jxgb8g\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Blockquote Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:187;a:17:{s:2:\"id\";s:29:\"blockquote_style_2_372ey9w9kx\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Blockquote Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:188;a:17:{s:2:\"id\";s:29:\"blockquote_style_3_g2g4hnnkvj\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Blockquote Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:189;a:17:{s:2:\"id\";s:29:\"blockquote_style_4_7pqcnsx899\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Blockquote Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:190;a:17:{s:2:\"id\";s:29:\"blockquote_style_5_28824rt9r8\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Blockquote Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:191;a:17:{s:2:\"id\";s:24:\"brand_style_1_vv9785u49z\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:192;a:17:{s:2:\"id\";s:24:\"brand_style_2_8nx6eueqjp\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:193;a:17:{s:2:\"id\";s:24:\"brand_style_3_23x7k57z26\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Brands Style Three\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_3.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:194;a:17:{s:2:\"id\";s:24:\"brand_style_4_ndk8gzmdgj\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Brands Style Four\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_4.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:195;a:17:{s:2:\"id\";s:24:\"brand_style_5_36e4fzh9c2\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Brands Style Five\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_5.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:196;a:17:{s:2:\"id\";s:24:\"brand_style_6_626y7q6kqx\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style Six\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_6.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:197;a:17:{s:2:\"id\";s:24:\"brand_style_7_7ewj9uk8eh\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Brands Style Seven\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_7.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:198;a:17:{s:2:\"id\";s:33:\"business_hours_style_1_j7v23s3qpz\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Business Hours Style One\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:199;a:17:{s:2:\"id\";s:33:\"business_hours_style_2_56hyzw85z3\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Business Hours Style Two\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_2.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:200;a:17:{s:2:\"id\";s:33:\"business_hours_style_3_hn6qjpw2vh\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Business Hours Style Three\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_3.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:201;a:17:{s:2:\"id\";s:33:\"business_hours_style_4_ysem3rsb3v\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Business Hours Style Four\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_4.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:202;a:17:{s:2:\"id\";s:33:\"business_hours_style_5_sk3hh48htr\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Business Hours Style Five\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_5.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:203;a:17:{s:2:\"id\";s:25:\"button_style_1_jt3sxec3uq\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:204;a:17:{s:2:\"id\";s:25:\"button_style_2_a338pkkckx\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:205;a:17:{s:2:\"id\";s:25:\"button_style_3_nmxv8x2drn\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:206;a:17:{s:2:\"id\";s:25:\"button_style_4_df7ke8j7mc\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Button Style Four\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_4.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:207;a:17:{s:2:\"id\";s:25:\"button_style_5_vbeh4cqy4k\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Button Style Five\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_5.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:208;a:17:{s:2:\"id\";s:25:\"button_style_6_z5b2qdmtnm\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style Six\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_6.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:209;a:17:{s:2:\"id\";s:25:\"button_style_7_3zxvj8va7x\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Seven\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_7.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:210;a:17:{s:2:\"id\";s:25:\"button_style_8_jp64g9ynaj\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Eight\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_8.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:211;a:17:{s:2:\"id\";s:33:\"call_to_action_style_1_45694bbpgc\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style One\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:212;a:17:{s:2:\"id\";s:33:\"call_to_action_style_2_qwk29ma2be\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style Two\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_2.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:213;a:17:{s:2:\"id\";s:33:\"call_to_action_style_3_mf23n79yep\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Call to Action Style Three\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_3.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:214;a:17:{s:2:\"id\";s:33:\"call_to_action_style_4_xg7bqb8v5v\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Call to Action Style Four\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_4.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:215;a:17:{s:2:\"id\";s:33:\"call_to_action_style_5_4k8aadb6au\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Call to Action Style Five\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_5.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:216;a:17:{s:2:\"id\";s:33:\"call_to_action_style_6_gufnbk8m8g\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style Six\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_6.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:217;a:17:{s:2:\"id\";s:33:\"call_to_action_style_7_mta36drr8w\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Call to Action Style Seven\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_7.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:218;a:17:{s:2:\"id\";s:31:\"contact_form_style_1_95pk6bay5u\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Contact form Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:219;a:17:{s:2:\"id\";s:31:\"contact_form_style_2_j6ny3jwfhe\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Contact form Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:220;a:17:{s:2:\"id\";s:31:\"contact_form_style_3_f7r89vj3tm\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Contact form Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:221;a:17:{s:2:\"id\";s:31:\"contact_form_style_4_cxevj7xz7w\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Contact form Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:222;a:17:{s:2:\"id\";s:31:\"contact_form_style_5_97p9jy4nsm\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Contact form Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:223;a:17:{s:2:\"id\";s:31:\"contact_form_style_6_yt4utqjcn4\";s:7:\"shareId\";s:6:\"blocks\";s:7:\"tmpType\";s:12:\"contact-form\";s:5:\"title\";s:22:\"Contact form Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:224;a:17:{s:2:\"id\";s:31:\"contact_form_style_7_55jpk6bxyw\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Contact form Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:225;a:17:{s:2:\"id\";s:28:\"countdown_style_1_m7xeenwza8\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:226;a:17:{s:2:\"id\";s:28:\"countdown_style_2_r3shkhbt8u\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:227;a:17:{s:2:\"id\";s:28:\"countdown_style_3_qjnaj8wk6k\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Countdown Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:228;a:17:{s:2:\"id\";s:28:\"countdown_style_4_3yn5emh45f\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Countdown Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:229;a:17:{s:2:\"id\";s:28:\"countdown_style_5_9ycpcp39vw\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Countdown Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:230;a:17:{s:2:\"id\";s:28:\"countdown_style_6_5c42amhafe\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style Six\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_6.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:231;a:17:{s:2:\"id\";s:28:\"countdown_style_7_cw4zh6c7wp\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Countdown Style Seven\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_7.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:232;a:17:{s:2:\"id\";s:26:\"counter_style_1_qzzjt84xvf\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:233;a:17:{s:2:\"id\";s:26:\"counter_style_2_uvae6yfg5v\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:234;a:17:{s:2:\"id\";s:26:\"counter_style_3_r2ga4yyks8\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Counter Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:235;a:17:{s:2:\"id\";s:26:\"counter_style_4_btjkaf9v98\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Counter Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:236;a:17:{s:2:\"id\";s:26:\"counter_style_5_fzjft4x8xt\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Counter Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:237;a:17:{s:2:\"id\";s:26:\"counter_style_6_rms8uunp9d\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style Six\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_6.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:238;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_1_s5mekpkg4u\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:239;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_2_4qz663fbbe\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:240;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_3_rn5c8sbp6v\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Custom Carousel Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:241;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_4_v3xvn62wue\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Custom Carousel Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:242;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_5_6jkx67bjw6\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Custom Carousel Style Five\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_5.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:243;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_6_2ccnv5x8bg\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style Six\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_6.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:244;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_7_9kxmdc5hbr\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Custom Carousel Style Seven\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_7.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:245;a:17:{s:2:\"id\";s:29:\"data_table_style_1_8xw8gngqu9\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Data Table Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:246;a:17:{s:2:\"id\";s:29:\"data_table_style_2_4e3uk3db6p\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Data Table Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:247;a:17:{s:2:\"id\";s:29:\"data_table_style_3_2z4gpq49z3\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Data Table Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:248;a:17:{s:2:\"id\";s:32:\"double_button_style_1_g6c2535mts\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Double Button Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:249;a:17:{s:2:\"id\";s:32:\"double_button_style_2_egcpc4h5ck\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Double Button Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:250;a:17:{s:2:\"id\";s:32:\"double_button_style_3_3dkn67v2vd\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Double Button Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:251;a:17:{s:2:\"id\";s:32:\"double_button_style_4_p23c923sg8\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Double Button Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:252;a:17:{s:2:\"id\";s:32:\"double_button_style_5_8n94g79vy3\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Double Button Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:253;a:17:{s:2:\"id\";s:27:\"dropcaps_style_1_23sm4q233b\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Dropcaps Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:254;a:17:{s:2:\"id\";s:27:\"dropcaps_style_2_dkj8yg6wme\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Dropcaps Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:255;a:17:{s:2:\"id\";s:27:\"dropcaps_style_3_ftm3m6hvms\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Dropcaps Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:256;a:17:{s:2:\"id\";s:27:\"dropcaps_style_4_9g7ayhz6zf\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Dropcaps Style Four\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_4.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:257;a:17:{s:2:\"id\";s:27:\"dropcaps_style_5_2yuqtnb35z\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Dropcaps Style Five\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_5.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:258;a:17:{s:2:\"id\";s:22:\"faq_style_1_zpteef35wq\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Faq Style One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_1.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:259;a:17:{s:2:\"id\";s:22:\"faq_style_2_6b5ns3uphs\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Faq Style Two\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_2.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:260;a:17:{s:2:\"id\";s:22:\"faq_style_3_b7pkc8a8q8\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Faq Style Three\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_3.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:261;a:17:{s:2:\"id\";s:22:\"faq_style_4_y424ypb8te\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Faq Style Four\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_4.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:262;a:17:{s:2:\"id\";s:22:\"faq_style_5_u7yeamvc9c\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Faq Style Five\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_5.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:263;a:17:{s:2:\"id\";s:26:\"flipbox_style_1_wm249sy3nn\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Flipbox Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:264;a:17:{s:2:\"id\";s:26:\"flipbox_style_2_cf69jdjgrr\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Flipbox Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:265;a:17:{s:2:\"id\";s:26:\"flipbox_style_3_2ycw8z79kr\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Flipbox Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:266;a:17:{s:2:\"id\";s:26:\"flipbox_style_4_rdt5rcv9v3\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Flipbox Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:267;a:17:{s:2:\"id\";s:26:\"flipbox_style_5_8923jxwf7r\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Flipbox Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:268;a:17:{s:2:\"id\";s:29:\"google_map_style_1_rteuabs4ks\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:269;a:17:{s:2:\"id\";s:29:\"google_map_style_2_7s9pzx9bfc\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:270;a:17:{s:2:\"id\";s:29:\"google_map_style_3_bdvx4fgbwj\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Google Map Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:271;a:17:{s:2:\"id\";s:29:\"google_map_style_4_nmnynxc699\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Google Map Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:272;a:17:{s:2:\"id\";s:29:\"google_map_style_5_bjvn665pkq\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Google Map Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:273;a:17:{s:2:\"id\";s:29:\"google_map_style_6_yzkzgbj9z9\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style Six\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_6.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:274;a:17:{s:2:\"id\";s:29:\"google_map_style_7_ccxe5rye7e\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Google Map Style Seven\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_7.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:275;a:17:{s:2:\"id\";s:26:\"heading_style_1_pjxp9brc6p\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:276;a:17:{s:2:\"id\";s:26:\"heading_style_2_y5zmtwckwv\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:277;a:17:{s:2:\"id\";s:26:\"heading_style_3_7bgzxjhttq\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Heading Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:278;a:17:{s:2:\"id\";s:26:\"heading_style_4_b5edv2vxdf\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Heading Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:279;a:17:{s:2:\"id\";s:26:\"heading_style_5_9d756ybn23\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Heading Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:280;a:17:{s:2:\"id\";s:26:\"heading_style_6_9amhaas52f\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style Six\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_6.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:281;a:17:{s:2:\"id\";s:26:\"heading_style_7_y4xtazr3bt\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Heading Style Seven\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_7.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:282;a:17:{s:2:\"id\";s:35:\"image_comparison_style_1_acjgc7x3zy\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Image Comparison Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:283;a:17:{s:2:\"id\";s:35:\"image_comparison_style_2_zf742rjueb\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Image Comparison Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:284;a:17:{s:2:\"id\";s:35:\"image_comparison_style_3_n3fx8zdmtk\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Image Comparison Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:285;a:17:{s:2:\"id\";s:35:\"image_comparison_style_4_v8cjfqmgww\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Comparison Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:286;a:17:{s:2:\"id\";s:35:\"image_comparison_style_5_u7c2q874aq\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Comparison Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:287;a:17:{s:2:\"id\";s:32:\"image_justify_style_1_th6ystnx5s\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Justify Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:288;a:17:{s:2:\"id\";s:32:\"image_justify_style_2_z5d4c75p64\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Justify Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:289;a:17:{s:2:\"id\";s:32:\"image_justify_style_3_7634dhb6jv\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Justify Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:290;a:17:{s:2:\"id\";s:32:\"image_justify_style_4_35t5j9az3x\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Justify Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:291;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_1_8xysq7upx3\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Magnifier Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:292;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_2_f7tx5ras45\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Magnifier Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:293;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_3_d82bfytbs6\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Magnifier Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:294;a:17:{s:2:\"id\";s:31:\"image_marker_style_1_nvv326d37y\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Image Marker Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:295;a:17:{s:2:\"id\";s:31:\"image_marker_style_2_6w2b9j6ngh\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Image Marker Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:296;a:17:{s:2:\"id\";s:31:\"image_marker_style_3_y8cr2xuhhk\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Marker Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:297;a:17:{s:2:\"id\";s:31:\"image_marker_style_4_ae2fpg8tap\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Marker Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:298;a:17:{s:2:\"id\";s:31:\"image_marker_style_5_uu4rtytjfu\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Marker Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:299;a:17:{s:2:\"id\";s:32:\"image_masonry_style_1_vkud9x72gu\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Masonry Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:300;a:17:{s:2:\"id\";s:32:\"image_masonry_style_2_a75x8zpy3z\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Masonry Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:301;a:17:{s:2:\"id\";s:32:\"image_masonry_style_3_phkzfn6gc6\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Masonry Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:302;a:17:{s:2:\"id\";s:32:\"image_masonry_style_4_zm75f65fz6\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Masonry Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:303;a:17:{s:2:\"id\";s:32:\"image_masonry_style_5_8gvt86up47\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Masonry Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:304;a:17:{s:2:\"id\";s:30:\"inline_menu_style_1_7vqm3ezesn\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:305;a:17:{s:2:\"id\";s:30:\"inline_menu_style_2_hd65rh6tny\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:306;a:17:{s:2:\"id\";s:30:\"inline_menu_style_3_y74n96n9em\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Inline Menu Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:307;a:17:{s:2:\"id\";s:30:\"inline_menu_style_4_nuf489b7f3\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Inline Menu Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:308;a:17:{s:2:\"id\";s:30:\"inline_menu_style_5_28h24du9v5\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Inline Menu Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:309;a:17:{s:2:\"id\";s:30:\"inline_menu_style_6_6ejfcujvju\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:310;a:17:{s:2:\"id\";s:30:\"inline_menu_style_7_4rz9u9yjcm\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Inline Menu Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:311;a:17:{s:2:\"id\";s:33:\"instagram_feed_style_1_be97ahcn6t\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:38:\"Instagram Feed Style One (Third party)\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_feed_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_feed_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-instagram-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"instagram feed\";i:1;s:9:\"instagram\";i:2;s:4:\"feed\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:312;a:17:{s:2:\"id\";s:28:\"instagram_style_1_bph5r6g9cy\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Instagram Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:313;a:17:{s:2:\"id\";s:28:\"instagram_style_2_n8ch5bjyuu\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Instagram Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:314;a:17:{s:2:\"id\";s:28:\"instagram_style_3_s5jq39qv3f\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Instagram Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:315;a:17:{s:2:\"id\";s:28:\"instagram_style_4_8dja274mys\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Instagram Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:316;a:17:{s:2:\"id\";s:28:\"instagram_style_5_32v6w8vad7\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Instagram Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:317;a:17:{s:2:\"id\";s:28:\"light_box_style_1_84fgpc5jmq\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Light Box Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:318;a:17:{s:2:\"id\";s:28:\"light_box_style_2_st529zk5ff\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Light Box Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:319;a:17:{s:2:\"id\";s:28:\"light_box_style_3_aahbpeyx35\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Light Box Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:320;a:17:{s:2:\"id\";s:28:\"light_box_style_4_r7jx3p3ae6\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Light Box Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:321;a:17:{s:2:\"id\";s:24:\"modal_style_1_gwntq25e9q\";s:7:\"shareId\";s:5:\"modal\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Modal Style One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-modal/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:5:\"modal\";i:1;s:6:\"blocks\";i:2;s:5:\"popup\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:322;a:17:{s:2:\"id\";s:24:\"modal_style_2_9vphqmdu4m\";s:7:\"shareId\";s:5:\"modal\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Modal Style Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-modal/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:5:\"modal\";i:1;s:6:\"blocks\";i:2;s:5:\"popup\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:323;a:17:{s:2:\"id\";s:30:\"news_ticker_style_1_39gvp9n89m\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:324;a:17:{s:2:\"id\";s:30:\"news_ticker_style_2_krvt4cu3a7\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:325;a:17:{s:2:\"id\";s:30:\"news_ticker_style_3_jg24rjcrwk\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"News Ticker Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:326;a:17:{s:2:\"id\";s:30:\"news_ticker_style_4_u2rw9ud82t\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"News Ticker Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:327;a:17:{s:2:\"id\";s:30:\"news_ticker_style_5_8b2aemvkcp\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"News Ticker Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:328;a:17:{s:2:\"id\";s:30:\"news_ticker_style_6_vpgwffs3bu\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:329;a:17:{s:2:\"id\";s:30:\"news_ticker_style_7_d4adcdennq\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"News Ticker Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:330;a:17:{s:2:\"id\";s:31:\"notification_style_1_unsfh9zvya\";s:7:\"shareId\";s:12:\"notification\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Notification Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-notification/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:331;a:17:{s:2:\"id\";s:31:\"notification_style_2_2zqq88xadp\";s:7:\"shareId\";s:12:\"notification\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Notification Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-notification/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:332;a:17:{s:2:\"id\";s:28:\"offcanvas_style_1_p66amk49fm\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Off canvas Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:333;a:17:{s:2:\"id\";s:28:\"offcanvas_style_2_wrqjcc22vc\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Off canvas Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:334;a:17:{s:2:\"id\";s:28:\"offcanvas_style_3_g8xf9k9ep2\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Off canvas Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:335;a:17:{s:2:\"id\";s:28:\"offcanvas_style_4_g5zpf2kt9e\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Off canvas Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:336;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_1_fz9x4vw87f\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Page Not Found Content Style One\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_1.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:337;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_2_9bjghx4xne\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Page Not Found Content Style Two\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_2.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:338;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_3_azsrtcp7tw\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:34:\"Page Not Found Content Style Three\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_3.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:339;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_4_cf8q7swvz4\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:33:\"Page Not Found Content Style Four\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_4.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:340;a:17:{s:2:\"id\";s:31:\"panel_slider_style_1_kvg6tc8h5u\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Panel Slider Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:341;a:17:{s:2:\"id\";s:31:\"panel_slider_style_2_3qr55akzkw\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Panel Slider Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:342;a:17:{s:2:\"id\";s:31:\"panel_slider_style_3_9dvdvpja8g\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Panel Slider Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:343;a:17:{s:2:\"id\";s:31:\"panel_slider_style_4_krpx53ws9w\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Panel Slider Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:344;a:17:{s:2:\"id\";s:26:\"popover_style_1_rcevf8afja\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Popover Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:345;a:17:{s:2:\"id\";s:26:\"popover_style_2_mcwxczea3z\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Popover Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:346;a:17:{s:2:\"id\";s:26:\"popover_style_3_jr6hfc8qms\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Popover Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:347;a:17:{s:2:\"id\";s:29:\"pos_slider_style_1_ckx5h84693\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Slider Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:348;a:17:{s:2:\"id\";s:29:\"pos_slider_style_2_ca99erj8bn\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Slider Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:349;a:17:{s:2:\"id\";s:29:\"pos_slider_style_3_p2hkgym5wq\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Slider Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:350;a:17:{s:2:\"id\";s:29:\"pos_slider_style_4_4c5c85c8vx\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Post Slider Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:351;a:17:{s:2:\"id\";s:29:\"pos_slider_style_5_7kve7ka5u7\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Post Slider Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:352;a:17:{s:2:\"id\";s:31:\"post_carosul_style_1_3btcbkqn2g\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Carousel Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:353;a:17:{s:2:\"id\";s:31:\"post_carosul_style_2_fc3nfa3g89\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Carousel Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:354;a:17:{s:2:\"id\";s:31:\"post_carosul_style_3_5f5y8whky4\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Post Carousel Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:355;a:17:{s:2:\"id\";s:31:\"post_carosul_style_4_gn52cwg8c8\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Carousel Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:356;a:17:{s:2:\"id\";s:31:\"post_carosul_style_5_98tagjapff\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Carousel Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:357;a:17:{s:2:\"id\";s:28:\"post_grid_style_1_p3smsxy8sw\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Post Grid Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:358;a:17:{s:2:\"id\";s:28:\"post_grid_style_2_p7a8ykg5m9\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Post Grid Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:359;a:17:{s:2:\"id\";s:28:\"post_grid_style_3_a4yxfcs583\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Grid Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:360;a:17:{s:2:\"id\";s:28:\"post_grid_style_4_nhvq8qzt7z\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Post Grid Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:361;a:17:{s:2:\"id\";s:28:\"post_grid_style_5_2p2jjup7fz\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Post Grid Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:362;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_1_4bxg3uy2xc\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Grid Tab Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:363;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_2_w6ahtmd56p\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Grid Tab Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:364;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_3_qprpa27b7m\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Post Grid Tab Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:365;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_4_g6we2qkd78\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Grid Tab Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:366;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_5_36gt7ekdzt\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Grid Tab Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:367;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_1_xj2k6snj4u\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Pricing List View Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:368;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_2_r7zzqx3aak\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Pricing List View Style Two\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_2.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:369;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_3_wrsvkj6hex\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Pricing List View Style Three\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_3.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:370;a:17:{s:2:\"id\";s:32:\"pricing_table_style_1_jvnhcz4m28\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:371;a:17:{s:2:\"id\";s:32:\"pricing_table_style_2_urz4e786zd\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:372;a:17:{s:2:\"id\";s:32:\"pricing_table_style_3_d27f3m4jqr\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Pricing Table Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:373;a:17:{s:2:\"id\";s:32:\"pricing_table_style_4_pr45ayj6td\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Pricing Table Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:374;a:17:{s:2:\"id\";s:32:\"pricing_table_style_5_pbrqk5pc9j\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Pricing Table Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:375;a:17:{s:2:\"id\";s:32:\"pricing_table_style_6_racv3s8ug4\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style Six\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_6.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:376;a:17:{s:2:\"id\";s:32:\"pricing_table_style_7_zgkgyjs7u9\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Pricing Table Style Seven\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_7.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:377;a:17:{s:2:\"id\";s:31:\"progress_bar_style_1_udym6u7gbw\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:378;a:17:{s:2:\"id\";s:31:\"progress_bar_style_2_544k7u76m7\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:379;a:17:{s:2:\"id\";s:31:\"progress_bar_style_3_k68z7wneyx\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:380;a:17:{s:2:\"id\";s:31:\"progress_bar_style_4_v9j8qj6269\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:381;a:17:{s:2:\"id\";s:31:\"progress_bar_style_5_e8fuw2bg2y\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:382;a:17:{s:2:\"id\";s:31:\"progress_bar_style_6_bevpmvgv84\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:383;a:17:{s:2:\"id\";s:31:\"progress_bar_style_7_fy9jk4qcgk\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:384;a:17:{s:2:\"id\";s:31:\"progress_bar_style_8_4v6vs4x546\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Eight\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_8.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:385;a:17:{s:2:\"id\";s:31:\"progress_bar_style_9_u79rdqrxa2\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Nine\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_9.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:386;a:17:{s:2:\"id\";s:32:\"progress_bar_style_10_jt2j93hbts\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Ten\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_10.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:387;a:17:{s:2:\"id\";s:32:\"progress_bar_style_11_s7uwm4dd7k\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Progress Bar Style Eleven\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_11.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_11.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:388;a:17:{s:2:\"id\";s:31:\"scroll_image_style_1_5t7e6xf4fh\";s:7:\"shareId\";s:12:\"scroll-image\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Scroll Image Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-scroll-image/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:12:\"scroll image\";i:1;s:5:\"image\";i:2;s:6:\"scroll\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:389;a:17:{s:2:\"id\";s:31:\"scroll_image_style_2_6fpnvhdjdx\";s:7:\"shareId\";s:12:\"scroll-image\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Scroll Image Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-scroll-image/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:12:\"scroll image\";i:1;s:5:\"image\";i:2;s:6:\"scroll\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:390;a:17:{s:2:\"id\";s:36:\"scroll_navigation_style_1_t526tv3ryx\";s:7:\"shareId\";s:17:\"scroll-navigation\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Scroll Navigation Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_navigation_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_navigation_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-scroll-navigation/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:17:\"scroll navigation\";i:1;s:6:\"scroll\";i:2;s:10:\"navigation\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:391;a:17:{s:2:\"id\";s:30:\"search_form_style_1_9an6akfpk8\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Search Form Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:392;a:17:{s:2:\"id\";s:30:\"search_form_style_2_tszye446bn\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Search Form Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:393;a:17:{s:2:\"id\";s:30:\"search_form_style_3_4fjx95bkd3\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Search Form Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:394;a:17:{s:2:\"id\";s:30:\"search_form_style_4_wx3ab4ggwz\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Search Form Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:395;a:17:{s:2:\"id\";s:30:\"search_form_style_5_hmdy654wds\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Search Form Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:396;a:17:{s:2:\"id\";s:27:\"services_style_1_bwvhy2c84g\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:397;a:17:{s:2:\"id\";s:27:\"services_style_2_ag962rmqxr\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:398;a:17:{s:2:\"id\";s:27:\"services_style_3_g47g88ey6n\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Services Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:399;a:17:{s:2:\"id\";s:27:\"services_style_4_ss6adkhx52\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Services Style Four\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_4.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:400;a:17:{s:2:\"id\";s:27:\"services_style_5_wh8b5vv54n\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Services Style Five\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_5.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:401;a:17:{s:2:\"id\";s:27:\"services_style_6_ruh2czd6nh\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style Six\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_6.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:402;a:17:{s:2:\"id\";s:27:\"services_style_7_9uyap4n7k8\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Services Style Seven\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_7.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:403;a:17:{s:2:\"id\";s:30:\"single_post_style_1_v5bfzs2tfn\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Single Post Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:404;a:17:{s:2:\"id\";s:30:\"single_post_style_2_xytnafdr66\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Single Post Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:405;a:17:{s:2:\"id\";s:30:\"single_post_style_3_p285gdqv8p\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Single Post Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:406;a:17:{s:2:\"id\";s:30:\"single_post_style_4_mtaxq3kgnx\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Single Post Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:407;a:17:{s:2:\"id\";s:30:\"single_post_style_5_kd7n4zyatw\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Single Post Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:408;a:17:{s:2:\"id\";s:31:\"social_share_style_1_3uzr333n7p\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:409;a:17:{s:2:\"id\";s:31:\"social_share_style_2_fs942wsyab\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:410;a:17:{s:2:\"id\";s:31:\"social_share_style_3_5c9aufg322\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:411;a:17:{s:2:\"id\";s:31:\"social_share_style_4_6g43sh6dzy\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:412;a:17:{s:2:\"id\";s:31:\"social_share_style_5_bmx7xv9673\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:413;a:17:{s:2:\"id\";s:31:\"social_share_style_6_u456uy4qxp\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:414;a:17:{s:2:\"id\";s:31:\"social_share_style_7_ynanq33uec\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:415;a:17:{s:2:\"id\";s:31:\"social_share_style_8_vb6shd4uwr\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Eight\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_8.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:416;a:17:{s:2:\"id\";s:31:\"social_share_style_9_wxe528kusc\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Nine\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_9.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:417;a:17:{s:2:\"id\";s:28:\"subscribe_style_1_8un95pye7f\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Subscribe Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:418;a:17:{s:2:\"id\";s:28:\"subscribe_style_2_78zexgwe69\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Subscribe Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:419;a:17:{s:2:\"id\";s:28:\"subscribe_style_3_u76sbj65yr\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Subscribe Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:420;a:17:{s:2:\"id\";s:28:\"subscribe_style_4_erxfmyzk7f\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Subscribe Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:421;a:17:{s:2:\"id\";s:28:\"subscribe_style_5_hv234wgscs\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Subscribe Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:422;a:17:{s:2:\"id\";s:27:\"switcher_style_1_c9h3ctrxaq\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Switcher Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:423;a:17:{s:2:\"id\";s:27:\"switcher_style_2_dgc88nqwfz\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Switcher Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:424;a:17:{s:2:\"id\";s:27:\"switcher_style_3_q6kxgtus44\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Switcher Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:425;a:17:{s:2:\"id\";s:22:\"tab_style_1_mekdzf8w5x\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Tab Style One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_1.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:426;a:17:{s:2:\"id\";s:22:\"tab_style_2_4z6kr95dr7\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Tab Style Two\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_2.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:427;a:17:{s:2:\"id\";s:22:\"tab_style_3_d53z3kvqrh\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Tab Style Three\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_3.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:428;a:17:{s:2:\"id\";s:22:\"tab_style_4_hxwey7ekrq\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Tab Style Four\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_4.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:429;a:17:{s:2:\"id\";s:22:\"tab_style_5_k22v67k83j\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Tab Style Five\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_5.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:430;a:17:{s:2:\"id\";s:30:\"team_member_style_1_eppn2stb86\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:431;a:17:{s:2:\"id\";s:30:\"team_member_style_2_mpeeytw8bt\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:432;a:17:{s:2:\"id\";s:30:\"team_member_style_3_j2x82w7m7k\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:433;a:17:{s:2:\"id\";s:30:\"team_member_style_4_mrdmhss77d\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Team Member Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:434;a:17:{s:2:\"id\";s:30:\"team_member_style_5_e8p6mc5umz\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Team Member Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:435;a:17:{s:2:\"id\";s:30:\"team_member_style_6_b3ets3u9p7\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:436;a:17:{s:2:\"id\";s:30:\"team_member_style_7_u7tzqjqry5\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:437;a:17:{s:2:\"id\";s:30:\"team_member_style_8_9s72yx6dgz\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Eight\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_8.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:438;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_1_hlyuhnhd9u\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style One\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_1.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:439;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_2_onssr4f2zo\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style Two\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_2.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:440;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_3_w1svre56m6\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Three\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_3.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:441;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_4_9hn18azb1d\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Four\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_4.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:442;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_5_y3oj2nltgj\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Five\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_5.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:443;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_6_b09tws8ixf\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style Six\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_6.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:444;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_7_a348ntx5tp\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Seven\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_7.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:445;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_8_k925rlr55h\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Eight\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_8.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:446;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_9_8e5eqxi9jy\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Nine\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_9.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:447;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_1_qd4g4v7ild\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Testimonial Grid Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:448;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_2_31e417al2d\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Testimonial Grid Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:449;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_3_yup8k13zuu\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Testimonial Grid Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:450;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_4_x80mojmfqo\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Testimonial Grid Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:451;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_5_h8sybzp00j\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Testimonial Grid Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:452;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_1_liy9j6a4sw\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Thumbnails Gallery Style One\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_1.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:453;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_2_ufc22xec5k\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Thumbnails Gallery Style Two\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_2.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:454;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_3_07538rgt40\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Thumbnails Gallery Style Three\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_3.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:455;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_4_q03tgw5rel\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Thumbnails Gallery Style Four\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_4.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:456;a:17:{s:2:\"id\";s:25:\"toggle_style_1_0sclk1jnhv\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Toggle Style One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:457;a:17:{s:2:\"id\";s:25:\"toggle_style_2_mb4029rnr8\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Toggle Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:458;a:17:{s:2:\"id\";s:25:\"toggle_style_3_0ymbq8xpdf\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Toggle Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:459;a:17:{s:2:\"id\";s:26:\"tooltip_style_1_tsf945zq7k\";s:7:\"shareId\";s:7:\"tooltip\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:7:\"Tooltip\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tooltip_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tooltip_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-tooltip/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"tooltip\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:460;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_1_udxkxc9jlm\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Twitter Feed Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:461;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_2_fbxf7xmu4v\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Twitter Feed Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:462;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_3_sx6ji2pl9n\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Twitter Feed Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:463;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_4_h6betz0r4f\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Twitter Feed Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:464;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_5_3th1qp6c87\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Twitter Feed Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:465;a:17:{s:2:\"id\";s:34:\"user_login_form_style_1_s06m851pob\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"User Login Form Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:466;a:17:{s:2:\"id\";s:34:\"user_login_form_style_2_gp2blr7u64\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"User Login Form Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:467;a:17:{s:2:\"id\";s:34:\"user_login_form_style_3_rdxrfgf0bf\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"User Login Form Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:468;a:17:{s:2:\"id\";s:34:\"user_login_form_style_4_9o3hca1337\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"User Login Form Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:469;a:17:{s:2:\"id\";s:34:\"user_login_form_style_5_rzcb4xr7rl\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"User Login Form Style Five\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_5.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:470;a:17:{s:2:\"id\";s:32:\"user_register_style_1_jo7axqv8mm\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"User Register Form Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:471;a:17:{s:2:\"id\";s:32:\"user_register_style_2_l6yq1hun03\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"User Register Form Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:472;a:17:{s:2:\"id\";s:32:\"user_register_style_3_r0o96wkojg\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"User Register Form Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:473;a:17:{s:2:\"id\";s:32:\"user_register_style_4_6ns1vzavnf\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"User Register Form Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:474;a:17:{s:2:\"id\";s:32:\"user_register_style_5_jtf0h4c0qb\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"User Register Form Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:475;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_1_ougcvd1bug\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Vertical Timeline Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:476;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_2_e68bj78wlw\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Vertical Timeline Style Two\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_2.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:477;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_3_kr7719268c\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Vertical Timeline Style Three\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_3.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:478;a:17:{s:2:\"id\";s:31:\"video_player_style_1_fy78h0vyah\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Video Player Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:479;a:17:{s:2:\"id\";s:31:\"video_player_style_2_u7gen4qpkb\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Video Player Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:480;a:17:{s:2:\"id\";s:31:\"video_player_style_3_arj5tv00yc\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Video Player Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:481;a:17:{s:2:\"id\";s:31:\"video_player_style_4_lgx1m1kd7y\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Video Player Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:482;a:17:{s:2:\"id\";s:26:\"weather_style_1_32zautjaos\";s:7:\"shareId\";s:7:\"weather\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Weather Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/weather_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/weather_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-weather/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"weather\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:483;a:17:{s:2:\"id\";s:41:\"woocommerce_add_to_cart_button_6g8fpvr3p7\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"WooCommerce Add To Cart\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_add_to_cart_button.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_add_to_cart_button.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:62:\"http://demo.wphash.com/htmega/element-woocommerce-add-to-cart/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:11:\"add to cart\";i:1;s:6:\"blocks\";i:2;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:484;a:17:{s:2:\"id\";s:32:\"woocommerce_cart_page_cqqy50ybwv\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"WooCommerce Cart Page\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_cart_page.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_cart_page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/element-woocommerce-cart-page/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"cart page\";i:1;s:11:\"woocommerce\";i:2;s:6:\"blocks\";i:3;s:4:\"page\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:485;a:17:{s:2:\"id\";s:31:\"woocommerce_category_01wxfbh3ge\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"WooCommerce Category Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_category.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_category.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:59:\"http://demo.wphash.com/htmega/element-woocommerce-category/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"category page\";i:1;s:8:\"category\";i:2;s:6:\"blocks\";i:3;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:486;a:17:{s:2:\"id\";s:36:\"woocommerce_checkout_page_yj01hu27zk\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"WooCommerce Checkout Page\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_checkout_page.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_checkout_page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-checkout-page/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"checkout page\";i:1;s:8:\"checkout\";i:2;s:4:\"page\";i:3;s:6:\"blocks\";i:4;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:487;a:17:{s:2:\"id\";s:34:\"working_process_style_1_x5b6d6s8y4\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Working Progress Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:488;a:17:{s:2:\"id\";s:34:\"working_process_style_2_2db15ccu1g\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Working Progress Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:489;a:17:{s:2:\"id\";s:34:\"working_process_style_3_z1cfo5eugm\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Working Progress Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:490;a:17:{s:2:\"id\";s:34:\"working_process_style_4_mfu7ssf7xu\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Working Progress Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:491;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-1_nud72anbaq\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.shrimpthemes.com/1/megamenu/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:492;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-2_n29a43xw43\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:493;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-3_5shz3rfvk8\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Three\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_3.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.shrimpthemes.com/1/megamenu/home-three/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:494;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-4_68ete7pa9g\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Four\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_4.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:58:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-product/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:495;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-5_b9qfvdz9yh\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Five\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_5.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-map/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:496;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-6_vvm8qqynmp\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Six\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_6.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:497;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-7_kkvzxqmc8f\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Seven\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_7.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-image/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:498;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-8_9gpnpqn3yb\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Eight\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_8.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-post/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:499;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-9_3eecfdhfd9\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Nine\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_9.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-categories/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:500;a:17:{s:2:\"id\";s:30:\"mega-menu-layout-10_mnccf7239b\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Ten\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_10.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:501;a:17:{s:2:\"id\";s:14:\"header-1-17752\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-1.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:502;a:17:{s:2:\"id\";s:14:\"header-2-15569\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Two\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-2.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:503;a:17:{s:2:\"id\";s:14:\"header-3-18697\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Three\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-3.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:504;a:17:{s:2:\"id\";s:14:\"header-4-18564\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Four\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-4.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:505;a:17:{s:2:\"id\";s:14:\"header-5-16078\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Five\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-5.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:506;a:17:{s:2:\"id\";s:14:\"header-6-15369\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Six\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-6.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:507;a:17:{s:2:\"id\";s:14:\"header-7-16242\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Seven\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-7.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:508;a:17:{s:2:\"id\";s:14:\"header-8-15269\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Eight\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-8.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:509;a:17:{s:2:\"id\";s:14:\"header-9-17118\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Nine\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-9.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:510;a:17:{s:2:\"id\";s:15:\"header-10-18087\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Ten\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-10.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:511;a:17:{s:2:\"id\";s:14:\"footer-1-17752\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-1.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:512;a:17:{s:2:\"id\";s:14:\"footer-2-15444\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Two\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-2.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:513;a:17:{s:2:\"id\";s:14:\"footer-3-16047\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Three\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-3.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:514;a:17:{s:2:\"id\";s:14:\"footer-4-15702\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Four\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-4.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:515;a:17:{s:2:\"id\";s:14:\"footer-5-17959\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Five\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-5.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:516;a:17:{s:2:\"id\";s:14:\"footer-6-16049\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Six\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-6.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:517;a:17:{s:2:\"id\";s:14:\"footer-7-18195\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Seven\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-7.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:518;a:17:{s:2:\"id\";s:14:\"footer-8-16769\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Eight\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-8.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:519;a:17:{s:2:\"id\";s:14:\"footer-9-15365\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Nine\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-9.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:520;a:17:{s:2:\"id\";s:15:\"footer-10-18245\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Ten\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-10.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:521;a:17:{s:2:\"id\";s:19:\"blog-layout-1-17113\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:15:\"Blog Layout One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-1.jpg\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:522;a:17:{s:2:\"id\";s:19:\"blog-layout-2-18629\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:15:\"Blog Layout Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-2.jpg\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:36:\"http://demo.wphash.com/2/ht-builder/\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:523;a:17:{s:2:\"id\";s:20:\"blog-details-1-16721\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:16:\"Blog Details One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-details-1.jpg\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-details-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:67:\"http://demo.wphash.com/2/ht-builder/the-top-20-trends-of-the-world/\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:4:{i:0;s:4:\"blog\";i:1;s:9:\"blog page\";i:2;s:6:\"blocks\";i:3;s:12:\"blog details\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}}}','no'),(1028,'htmega_pro_info_library_data','a:3:{s:7:\"notices\";a:1:{i:0;a:5:{s:5:\"title\";s:12:\"Cyber Monday\";s:11:\"description\";s:1:\"#\";s:11:\"bannerimage\";s:1:\"#\";s:10:\"bannerlink\";s:1:\"#\";s:6:\"status\";s:1:\"0\";}}s:8:\"pro_link\";a:1:{i:0;a:1:{s:3:\"url\";s:42:\"https://hasthemes.com/plugins/ht-mega-pro/\";}}s:9:\"templates\";a:524:{i:0;a:17:{s:2:\"id\";s:17:\"agency_45d8s2bj95\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency.png\";s:9:\"fullimage\";s:66:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/agency/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:4:\"home\";i:1;s:6:\"agency\";i:2;s:12:\"landing page\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:1;a:17:{s:2:\"id\";s:25:\"agency_aboutus_n8m2kmxbz8\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-aboutus.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-agency/about-us/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:5:\"about\";i:1;s:4:\"page\";i:2;s:8:\"about us\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:2;a:17:{s:2:\"id\";s:27:\"agency_contactus_gvp6vkz39j\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-contactus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-agency/contact-us/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:7:\"contact\";i:1;s:4:\"page\";i:2;s:10:\"contact us\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:3;a:17:{s:2:\"id\";s:25:\"agency_service_etqju45qvp\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-agency/service/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:7:\"service\";i:1;s:4:\"page\";i:2;s:12:\"service page\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:4;a:17:{s:2:\"id\";s:20:\"carpenter_2kemcu3f55\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/carpenter/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:4:\"home\";i:2;s:4:\"page\";i:3;s:12:\"landing page\";i:4;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:5;a:17:{s:2:\"id\";s:28:\"carpenter_gallery_r95zup934a\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:12:\"Gallery Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-gallery.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-carpenter/gallery/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:4:\"page\";i:2;s:7:\"gallery\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:6;a:17:{s:2:\"id\";s:28:\"carpenter_service_9d3h95pvjz\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-carpenter/service/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:7;a:17:{s:2:\"id\";s:30:\"carpenter_contactus_mgcbf4yg3b\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-carpenter/contact-us/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:8;a:17:{s:2:\"id\";s:28:\"carpenter_aboutus_xk8t76bfq8\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-carpenter/about-us/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:9;a:17:{s:2:\"id\";s:18:\"charity_n3er8mc5cj\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/charity/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:12:\"landing page\";i:4;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:10;a:17:{s:2:\"id\";s:24:\"charity_cause_v4j4x3nkgg\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:10:\"Cause Page\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-cause.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-cause.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-charity/cause/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:10:\"cause page\";i:1;s:5:\"cause\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:11;a:17:{s:2:\"id\";s:24:\"charity_event_4tmcyzb49m\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:10:\"Event Page\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-event.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-charity/event/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:12;a:17:{s:2:\"id\";s:28:\"charity_volunteer_kzjb9qj5h8\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:14:\"Volunteer Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-volunteer.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-volunteer.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-charity/volunteer/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:14:\"volunteer page\";i:1;s:9:\"volunteer\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:13;a:17:{s:2:\"id\";s:26:\"charity_gallery_2rk36ac49b\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:12:\"Gallery Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-gallery.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-charity/gallery/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:7:\"gallery\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:14;a:17:{s:2:\"id\";s:26:\"charity_aboutus_jem34qmthq\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-aboutus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-charity/about-us/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:15;a:17:{s:2:\"id\";s:28:\"charity_contactus_769kcm8gky\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-contactus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-charity/contact-us/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:16;a:17:{s:2:\"id\";s:27:\"cleaning_service_g8m6v9dchv\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/cleaning-service/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:17;a:17:{s:2:\"id\";s:31:\"cleaning_servicepage_q9a9swt5h2\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-servicepage.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-servicepage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-cleaning/service/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:18;a:17:{s:2:\"id\";s:29:\"cleaning_contactus_xzgd43g5dz\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-contactus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-cleaning/contact-us/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:19;a:17:{s:2:\"id\";s:27:\"cleaning_aboutus_qyuvwz3nhk\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-aboutus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-cleaning/about-us/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:20;a:17:{s:2:\"id\";s:23:\"construction_x8g564jfuf\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/construction/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:5:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:21;a:17:{s:2:\"id\";s:31:\"construction_service_uqquxwb3sd\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-construction/service/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:22;a:17:{s:2:\"id\";s:31:\"construction_aboutus_b6ekh8935j\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-aboutus.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-construction/about/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:23;a:17:{s:2:\"id\";s:33:\"construction_contactus_ydrrbg84f7\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-contactus.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-construction/contact/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:24;a:17:{s:2:\"id\";s:20:\"corporate_znr56pbqm8\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/corporate/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:7:\"landing\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:25;a:17:{s:2:\"id\";s:28:\"corporate_service_pcpk4u7eak\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-corporate/service/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:26;a:17:{s:2:\"id\";s:30:\"corporate_portfolio_3y4xbbdz38\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-portfolio.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-portfolio.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-corporate/portfolio/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:14:\"portfolio page\";i:1;s:9:\"portfolio\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:27;a:17:{s:2:\"id\";s:25:\"corporate_team_pqr5wjat4y\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:11:\"Team Member\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-team.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-team.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-corporate/team/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:5:{i:0;s:16:\"team member page\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:4:\"page\";i:4;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:28;a:17:{s:2:\"id\";s:28:\"corporate_aboutus_jxs7r3m5at\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-corporate/about-us/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:29;a:17:{s:2:\"id\";s:30:\"corporate_contactus_tazs9b3d4v\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-corporate/contact-us/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:30;a:17:{s:2:\"id\";s:20:\"education_8rfettzq6r\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/education/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:31;a:17:{s:2:\"id\";s:26:\"education_event_8aja65gjpr\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-event.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-education/event/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:32;a:17:{s:2:\"id\";s:28:\"education_teacher_55bbjt6jcf\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:7:\"Teacher\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-teacher.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-teacher.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-education/teacher/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:12:\"teacher page\";i:1;s:7:\"teacher\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:33;a:17:{s:2:\"id\";s:27:\"education_course_8n699mwe69\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:6:\"Course\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-course.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-course.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-education/course/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:11:\"course page\";i:1;s:6:\"course\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:34;a:17:{s:2:\"id\";s:28:\"education_aboutus_t4azaf84uu\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-education/about-us/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:35;a:17:{s:2:\"id\";s:30:\"education_contactus_7p5mc2s3zs\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-education/contact-us/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:36;a:17:{s:2:\"id\";s:16:\"event_522h7svr4j\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-page.png\";s:9:\"fullimage\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/event-page/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:37;a:17:{s:2:\"id\";s:24:\"event_speaker_55ufe49m8n\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:7:\"Speaker\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-speaker.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-speaker.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-event/speaker/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:12:\"speaker page\";i:1;s:7:\"speaker\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:38;a:17:{s:2:\"id\";s:26:\"event_eventpage_vps3p2s22g\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:10:\"Event Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-eventpage.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-eventpage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/ht-event/event/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:39;a:17:{s:2:\"id\";s:26:\"event_contactus_2ujgh8s2dw\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-contactus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-event/contact/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:40;a:17:{s:2:\"id\";s:24:\"event_aboutus_a67zz54e6g\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-aboutus.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/ht-event/about/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:41;a:17:{s:2:\"id\";s:20:\"gardening_kws6z7rc9g\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/gardening/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:6:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"gardening\";i:5;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:42;a:17:{s:2:\"id\";s:28:\"gardening_service_43ucbz93rr\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-gardening/service/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:43;a:17:{s:2:\"id\";s:28:\"gardening_aboutus_w5h4mc4225\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-gardening/about/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:44;a:17:{s:2:\"id\";s:30:\"gardening_contactus_grjme9fsm3\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-gardening/contact/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:45;a:17:{s:2:\"id\";s:18:\"medical_w65t8v825k\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/medical/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:46;a:17:{s:2:\"id\";s:26:\"medical_service_b7j9ty4qeu\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-service.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-medical/service/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:47;a:17:{s:2:\"id\";s:28:\"medical_contactus_y23y63w2qn\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-contactus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-medical/contact/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:48;a:17:{s:2:\"id\";s:26:\"medical_aboutus_ymcvt43pdx\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-aboutus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-medical/about/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:49;a:17:{s:2:\"id\";s:20:\"political_pjek38pd8w\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/political/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:50;a:17:{s:2:\"id\";s:26:\"political_event_nx3h3ve89q\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-event.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-political/event/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:51;a:17:{s:2:\"id\";s:28:\"political_gallery_ubb35z3qe6\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:7:\"Gallery\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-gallery.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-political/gallery/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:7:\"gallery\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:52;a:17:{s:2:\"id\";s:28:\"political_aboutus_k68jqsht87\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-political/about-us/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:53;a:17:{s:2:\"id\";s:30:\"political_contactus_yqsx2am63e\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-political/contact-us/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:54;a:17:{s:2:\"id\";s:20:\"portfolio_v2tg9dwcwe\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-page.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/portfolio-page/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:55;a:17:{s:2:\"id\";s:28:\"portfolio_aboutus_vq38yq7y9t\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-portfolio/about-us/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:56;a:17:{s:2:\"id\";s:30:\"portfolio_portfolio_qgr95dqrxj\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-portfoliopage.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-portfoliopage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-portfolio/portfolio/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:14:\"portfolio page\";i:1;s:9:\"portfolio\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:57;a:17:{s:2:\"id\";s:28:\"portfolio_service_7wgc9597sk\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-portfolio/service/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:58;a:17:{s:2:\"id\";s:30:\"portfolio_contactus_my822kr36d\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-portfolio/contact-us/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:59;a:17:{s:2:\"id\";s:17:\"repair_a9q9e56ee7\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair.png\";s:9:\"fullimage\";s:66:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/repair/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"page\";i:4;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:60;a:17:{s:2:\"id\";s:25:\"repair_service_eq47kz447a\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-repair/service/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:61;a:17:{s:2:\"id\";s:25:\"repair_aboutus_t2rp7mzmn3\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-aboutus.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/ht-repair/about/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:62;a:17:{s:2:\"id\";s:27:\"repair_contactus_wyq6te4d8m\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-contactus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-repair/contact/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:63;a:17:{s:2:\"id\";s:19:\"software_vb4agp6wbp\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:4:\"Home\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/htmega/software/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:7:\"landing\";i:4;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:64;a:17:{s:2:\"id\";s:27:\"software_service_htphkdaz63\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-software/service/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:65;a:17:{s:2:\"id\";s:27:\"software_pricing_a8kwetru2w\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:12:\"Pricing Plan\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-pricingplan.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-pricingplan.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/ht-software/pricing-plan/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing plan page\";i:1;s:7:\"pricing\";i:2;s:4:\"plan\";i:3;s:4:\"page\";i:4;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:66;a:17:{s:2:\"id\";s:29:\"software_contactus_4fkuuga2ab\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-contactus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-software/contact-us/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:67;a:17:{s:2:\"id\";s:27:\"software_aboutus_2fac7pq3mq\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-aboutus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-software/about-us/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:68;a:17:{s:2:\"id\";s:21:\"travelling_ymr5grsutm\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling.png\";s:9:\"fullimage\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/travelling/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"page\";i:4;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:69;a:17:{s:2:\"id\";s:29:\"travelling_service_78nc6prkbm\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-travel/service/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:70;a:17:{s:2:\"id\";s:29:\"travelling_aboutus_479unvj6w5\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-aboutus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/ht-travel/about/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:71;a:17:{s:2:\"id\";s:31:\"travelling_contactus_d85zbtkms9\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-contactus.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-travel/contact/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:72;a:17:{s:2:\"id\";s:26:\"ashram_buddhist_y66ev99gbj\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/buddhist.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/buddhist.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:6:\"ashram\";i:5;s:8:\"buddhist\";i:6;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:73;a:17:{s:2:\"id\";s:34:\"ashram_buddhist_program_1a6pml2e3o\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:7:\"Program\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_program.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_program.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/program-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:12:\"program page\";i:1;s:7:\"program\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:74;a:17:{s:2:\"id\";s:35:\"ashram_buddhist_about_us_x761aavx58\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:75;a:17:{s:2:\"id\";s:37:\"ashram_buddhist_contact_us_y25qvjt4it\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:76;a:17:{s:2:\"id\";s:28:\"broadband_telecom_ua8s5hmv98\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadbandtelecom.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadbandtelecom.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:4:\"home\";i:4;s:9:\"broadband\";i:5;s:17:\"broadband telecom\";i:6;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:77;a:17:{s:2:\"id\";s:36:\"broadband_telecom_service_9cpi1ydrqb\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_service.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/service-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:78;a:17:{s:2:\"id\";s:37:\"broadband_telecom_about_us_vsqp66ef31\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_about_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/about-us-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:79;a:17:{s:2:\"id\";s:39:\"broadband_telecom_contact_us_ccq31rgdsd\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:89:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_contact_us.png\";s:9:\"fullimage\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:59:\"http://demo.wphash.com/htmega/contact-us-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:80;a:17:{s:2:\"id\";s:30:\"campgrounds_camping_hcpk4m63xu\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgroundsandcamping.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgroundsandcamping.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:4:\"page\";i:5;s:11:\"campgrounds\";i:6;s:7:\"camping\";i:7;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:81;a:17:{s:2:\"id\";s:45:\"campgrounds_and_camping_activities_kw1iw1w5om\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:10:\"Activities\";s:9:\"thumbnail\";s:95:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_activities.png\";s:9:\"fullimage\";s:94:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_activities.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:65:\"http://demo.wphash.com/htmega/activities-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:5:{i:0;s:10:\"activities\";i:1;s:4:\"page\";i:2;s:11:\"campgrounds\";i:3;s:7:\"camping\";i:4;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:82;a:17:{s:2:\"id\";s:43:\"campgrounds_and_camping_about_us_k88jokwiry\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:93:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_about_us.png\";s:9:\"fullimage\";s:92:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:63:\"http://demo.wphash.com/htmega/about-us-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:11:\"campgrounds\";i:4;s:7:\"camping\";i:5;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:83;a:17:{s:2:\"id\";s:45:\"campgrounds_and_camping_contact_us_46xcu9c7g3\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:95:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_contact_us.png\";s:9:\"fullimage\";s:94:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:65:\"http://demo.wphash.com/htmega/contact-us-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:11:\"campgrounds\";i:4;s:7:\"camping\";i:5;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:84;a:17:{s:2:\"id\";s:21:\"dairy_farm_5zmthqw83e\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairyfarm.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairyfarm.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:7:\"landing\";i:4;s:4:\"home\";i:5;s:10:\"dairy farm\";i:6;s:5:\"dairy\";i:7;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:85;a:17:{s:2:\"id\";s:29:\"dairy_farm_service_7bz4tbo6fw\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/service-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:86;a:17:{s:2:\"id\";s:30:\"dairy_farm_about_us_1dqiqkoyxg\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_about_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/about-us-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:87;a:17:{s:2:\"id\";s:32:\"dairy_farm_contact_us_cswif0ssy5\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_contact_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/contact-us-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:88;a:17:{s:2:\"id\";s:41:\"dermatology_clinic_cosmetology_peg2kmxsuv\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_clinic_cosmetology.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_clinic_cosmetology.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:4:\"home\";i:4;s:34:\"dermatology clinic and cosmetology\";i:5;s:11:\"dermatology\";i:6;s:6:\"clinic\";i:7;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:89;a:17:{s:2:\"id\";s:30:\"dermatology_service_5laeueg3ds\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_service.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:69:\"http://demo.wphash.com/htmega/service-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:90;a:17:{s:2:\"id\";s:31:\"dermatology_about_us_484rfxkm2e\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_about_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:70:\"http://demo.wphash.com/htmega/about-us-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:91;a:17:{s:2:\"id\";s:33:\"dermatology_contact_us_0j7x4xdglg\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_contact_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:72:\"http://demo.wphash.com/htmega/contact-us-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:92;a:17:{s:2:\"id\";s:24:\"environmental_qeq23ubt9g\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:93;a:17:{s:2:\"id\";s:30:\"environmental_event_ej76jon9c2\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_event.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/event-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:94;a:17:{s:2:\"id\";s:32:\"environmental_project_juelxbd9j5\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:12:\"Project Page\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_project.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_project.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/project-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:12:\"project page\";i:1;s:7:\"project\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:95;a:17:{s:2:\"id\";s:33:\"environmental_about_us_759fe54f5s\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_about_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/about-us-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:96;a:17:{s:2:\"id\";s:35:\"environmental_contact_us_al5tklwk8n\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_contact_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/contact-us-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:97;a:17:{s:2:\"id\";s:23:\"fire_station_u6wtkus29f\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:12:\"fire station\";i:5;s:4:\"fire\";i:6;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:98;a:17:{s:2:\"id\";s:31:\"fire_station_service_vq26ims8uo\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/service-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:99;a:17:{s:2:\"id\";s:32:\"fire_station_about_us_6j3uuf9e6n\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_about_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/about-us-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:100;a:17:{s:2:\"id\";s:34:\"fire_station_contact_us_45y487wwve\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_contact_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/contact-us-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:101;a:17:{s:2:\"id\";s:18:\"funeral_wj7c4b6vam\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:102;a:17:{s:2:\"id\";s:26:\"funeral_service_skd4dobrj2\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_service.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/service-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:103;a:17:{s:2:\"id\";s:27:\"funeral_about_us_f4raq5yudl\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_about_us.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/about-us-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:12:\"abut us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:104;a:17:{s:2:\"id\";s:29:\"funeral_contact_us_nqlzm2zi50\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_contact_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/contact-us-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:105;a:17:{s:2:\"id\";s:20:\"insurance_wmgv2v6y6q\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:106;a:17:{s:2:\"id\";s:28:\"insurance_service_j848rhks4p\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:107;a:17:{s:2:\"id\";s:29:\"insurance_about_us_06nxl45xwk\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/about-us-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:108;a:17:{s:2:\"id\";s:31:\"insurance_contact_us_ej1zdfy59o\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:109;a:17:{s:2:\"id\";s:19:\"law_firm_yhyqa3a493\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/htmega/law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:8:\"law firm\";i:5;s:3:\"law\";i:6;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:110;a:17:{s:2:\"id\";s:27:\"law_firm_service_s4sz8oj7x5\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/service-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:111;a:17:{s:2:\"id\";s:28:\"law_firm_about_us_ny8w98jawa\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_about_us.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/about-us-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:112;a:17:{s:2:\"id\";s:30:\"law_firm_contact_us_n754ssryq1\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_contact_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/contact-us-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:113;a:17:{s:2:\"id\";s:25:\"moving_storage_4dc6r8g7h4\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:6:\"moving\";i:5;s:7:\"storage\";i:6;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:114;a:17:{s:2:\"id\";s:33:\"moving_storage_service_9cwu7cde8o\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_service.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/service-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:115;a:17:{s:2:\"id\";s:34:\"moving_storage_about_us_xh466hvgq1\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_about_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/about-us-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:116;a:17:{s:2:\"id\";s:36:\"moving_storage_contact_us_4zho4d9ae3\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_contact_us.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/contact-us-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:117;a:17:{s:2:\"id\";s:31:\"print_design_service_rcmw2zj6f2\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/printdesign.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/printdesign.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:5:\"print\";i:5;s:6:\"design\";i:6;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:118;a:17:{s:2:\"id\";s:31:\"print_design_service_848ckzji8i\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:7:\"service\";i:1;s:4:\"page\";i:2;s:12:\"service page\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:119;a:17:{s:2:\"id\";s:32:\"print_design_about_us_ukv59ub25v\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_about_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/about-us-print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:120;a:17:{s:2:\"id\";s:34:\"print_design_contact_us_0veko4wb65\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_contact_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:62:\"http://demo.wphash.com/htmega/contact-us-print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:121;a:17:{s:2:\"id\";s:26:\"roofing_service_z54h57u7wv\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofingservice.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofingservice.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:122;a:17:{s:2:\"id\";s:34:\"roofing_service_service_1r4kph9di0\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_service.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/service-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:123;a:17:{s:2:\"id\";s:35:\"roofing_service_about_us_7fkopysio3\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:124;a:17:{s:2:\"id\";s:37:\"roofing_service_contact_us_mijd6iffn2\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:125;a:17:{s:2:\"id\";s:21:\"safari_zoo_9w8zcq64kb\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safarizoo.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safarizoo.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:10:\"safari zoo\";i:5;s:3:\"zoo\";i:6;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:126;a:17:{s:2:\"id\";s:29:\"safari_zoo_service_rw1iw5acba\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/service-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:7:\"service\";i:1;s:12:\"service page\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:127;a:17:{s:2:\"id\";s:30:\"safari_zoo_about_us_p8sjo573uu\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_about_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/about-us-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:128;a:17:{s:2:\"id\";s:32:\"safari_zoo_contact_us_bnzz9pjhi2\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_contact_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/contact-us-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:129;a:17:{s:2:\"id\";s:22:\"senior_care_8wqrgx78kn\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:11:\"senior care\";i:5;s:6:\"senior\";i:6;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:130;a:17:{s:2:\"id\";s:30:\"senior_care_service_c7xc5vzx3f\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_service.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/contact-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:12:\"Service Page\";i:1;s:4:\"page\";i:2;s:7:\"service\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:131;a:17:{s:2:\"id\";s:31:\"senior_care_about_us_ksuhkf3m7k\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_about_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/about-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:132;a:17:{s:2:\"id\";s:33:\"senior_care_contact_us_2hjxs7y2lc\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_contact_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/contact-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:15:\"Contact Us Page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:133;a:17:{s:2:\"id\";s:24:\"steel_factory_ds9by3swts\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steelfactory.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steelfactory.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:5:\"steel\";i:5;s:7:\"factory\";i:6;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:134;a:17:{s:2:\"id\";s:30:\"steel_factory_range_bkkwuyg7b1\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:10:\"Range Page\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_range.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_range.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/our-range-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:10:\"range page\";i:1;s:4:\"page\";i:2;s:5:\"range\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:135;a:17:{s:2:\"id\";s:32:\"steel_factory_service_chv1ay37x4\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_service.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/service-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:136;a:17:{s:2:\"id\";s:33:\"steel_factory_about_us_9bnq7suh9h\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_about_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/about-us-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:137;a:17:{s:2:\"id\";s:35:\"steel_factory_contact_us_ijz1j3zt3w\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_contact_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/contact-us-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:138;a:17:{s:2:\"id\";s:20:\"tailoring_r5kn76pgyj\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:139;a:17:{s:2:\"id\";s:28:\"tailoring_service_6ucymgngmi\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:140;a:17:{s:2:\"id\";s:29:\"tailoring_about_us_v98sss0o3s\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/about-us-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:141;a:17:{s:2:\"id\";s:31:\"tailoring_contact_us_xsmn6eeeh0\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:142;a:17:{s:2:\"id\";s:20:\"transport_f7dtapk7e2\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:143;a:17:{s:2:\"id\";s:28:\"transport_service_nnxpu7qkk3\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:144;a:17:{s:2:\"id\";s:29:\"transport_about_us_6hffpo06x9\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:145;a:17:{s:2:\"id\";s:31:\"transport_contact_us_fl22j3z9b9\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:146;a:17:{s:2:\"id\";s:28:\"yacht_boat_rental_8dzm6gzsht\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:4:\"Home\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yachtboatrental.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yachtboatrental.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/yacht-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:17:\"yacht boat rental\";i:5;s:5:\"yacht\";i:6;s:4:\"boat\";i:7;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:147;a:17:{s:2:\"id\";s:24:\"yacht_service_pg0yu9xx39\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_service.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/service-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:148;a:17:{s:2:\"id\";s:25:\"yacht_about_us_0u6ugwpvob\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_about_us.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/about-us-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:149;a:17:{s:2:\"id\";s:27:\"yacht_contact_us_t7lqdcydyy\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_contact_us.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:63:\"http://demo.wphash.com/htmega/contact-us-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:150;a:17:{s:2:\"id\";s:15:\"yoga_85b2zwxxs3\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:65:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga.png\";s:9:\"fullimage\";s:64:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:35:\"http://demo.wphash.com/htmega/yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:151;a:17:{s:2:\"id\";s:23:\"yoga_classes_15486fnbmu\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:7:\"Classes\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_classes.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_classes.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/classes-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:12:\"Classes Page\";i:1;s:4:\"page\";i:2;s:7:\"classes\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:152;a:17:{s:2:\"id\";s:24:\"yoga_about_us_w1waenl4ng\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_about_us.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/about-us-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:153;a:17:{s:2:\"id\";s:26:\"yoga_contact_us_iywhig6o9t\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_contact_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/contact-us-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:154;a:17:{s:2:\"id\";s:31:\"interior_design_home_v7m5g5qx2c\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_home.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:6:\"design\";i:5;s:8:\"interior\";i:6;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:155;a:17:{s:2:\"id\";s:34:\"interior_design_service_5z8e4htc9q\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_service.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/service-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:156;a:17:{s:2:\"id\";s:37:\"interior_design_contact_us_5w6622qemx\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:157;a:17:{s:2:\"id\";s:35:\"interior_design_about_us_62jvrrp4b5\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:158;a:17:{s:2:\"id\";s:22:\"bakery_home_py9a5gyauv\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_home.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:159;a:17:{s:2:\"id\";s:25:\"bakery_service_t7jpyf6ay5\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/service-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:160;a:17:{s:2:\"id\";s:26:\"bakery_about_us_t2ujbhvdzd\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_about_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/about-us-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:161;a:17:{s:2:\"id\";s:28:\"bakery_contact_us_29amnkf6ua\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_contact_us.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/contact-us-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:162;a:17:{s:2:\"id\";s:20:\"pool_home_kxc2e7umyj\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_home.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:4:\"home\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:163;a:17:{s:2:\"id\";s:23:\"pool_service_dzs7253xu6\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_service.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/service-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:164;a:17:{s:2:\"id\";s:24:\"pool_about_us_ch6pve93p4\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_about_us.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/about-us-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:165;a:17:{s:2:\"id\";s:26:\"pool_contact_us_9k3en4x3hk\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_contact_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/contact-us-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:166;a:17:{s:2:\"id\";s:28:\"accordion_style_1_vs4ekp4ga5\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Accordion Style 1 (Icon Left )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:167;a:17:{s:2:\"id\";s:28:\"accordion_style_2_j36hbukkxn\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Accordion Style 1 (Icon Right )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:168;a:17:{s:2:\"id\";s:28:\"accordion_style_3_v82jmzxvsc\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:40:\"Accordion Style 1 ( Elementor Template )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:169;a:17:{s:2:\"id\";s:28:\"accordion_style_4_ptjm53pu2f\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Accordion Style 1 ( Round Shape)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:170;a:17:{s:2:\"id\";s:28:\"accordion_style_5_5jz6m7vzn7\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Accordion Style 1 (Transparent)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:171;a:17:{s:2:\"id\";s:28:\"accordion_style_6_ky8ay62h8h\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Accordion Style 1 (Box Shadow)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_6.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:172;a:17:{s:2:\"id\";s:28:\"accordion_style_7_nu9y2d3g32\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:33:\"Accordion Image Gallery - Style 2\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_7.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:173;a:17:{s:2:\"id\";s:28:\"accordion_style_8_4yzrufq88c\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:36:\"Image Accordion (Vertical) - Style 3\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_8.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:174;a:17:{s:2:\"id\";s:28:\"accordion_style_9_uss355wf4w\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:38:\"Image Accordion (Horizontal) - Style 4\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_9.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:175;a:17:{s:2:\"id\";s:35:\"animated_heading_style_1_995df22b5q\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:176;a:17:{s:2:\"id\";s:35:\"animated_heading_style_2_5ae28kvwj9\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:177;a:17:{s:2:\"id\";s:35:\"animated_heading_style_3_cu4bzem6y4\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Animated Heading Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:178;a:17:{s:2:\"id\";s:35:\"animated_heading_style_4_r6nfnt382r\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Animated Heading Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:179;a:17:{s:2:\"id\";s:35:\"animated_heading_style_5_acftd9yg2h\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Animated Heading Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:180;a:17:{s:2:\"id\";s:35:\"animated_heading_style_6_sxvs9v8z93\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style Six\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_6.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:181;a:17:{s:2:\"id\";s:35:\"animated_heading_style_7_zda7vf847d\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Animated Heading Style Seven\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_7.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:182;a:17:{s:2:\"id\";s:25:\"banner_style_1_aa4jch7aru\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Banner Default Style\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:183;a:17:{s:2:\"id\";s:25:\"banner_style_2_aqf48sdwqk\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Banner Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:184;a:17:{s:2:\"id\";s:25:\"banner_style_3_6t2ndkqsgr\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Banner Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:185;a:17:{s:2:\"id\";s:25:\"banner_style_4_2h6ymfs6gg\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Banner Style Four\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_4.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:186;a:17:{s:2:\"id\";s:29:\"blockquote_style_1_5vw7jxgb8g\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Blockquote Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:187;a:17:{s:2:\"id\";s:29:\"blockquote_style_2_372ey9w9kx\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Blockquote Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:188;a:17:{s:2:\"id\";s:29:\"blockquote_style_3_g2g4hnnkvj\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Blockquote Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:189;a:17:{s:2:\"id\";s:29:\"blockquote_style_4_7pqcnsx899\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Blockquote Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:190;a:17:{s:2:\"id\";s:29:\"blockquote_style_5_28824rt9r8\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Blockquote Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:191;a:17:{s:2:\"id\";s:24:\"brand_style_1_vv9785u49z\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:192;a:17:{s:2:\"id\";s:24:\"brand_style_2_8nx6eueqjp\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:193;a:17:{s:2:\"id\";s:24:\"brand_style_3_23x7k57z26\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Brands Style Three\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_3.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:194;a:17:{s:2:\"id\";s:24:\"brand_style_4_ndk8gzmdgj\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Brands Style Four\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_4.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:195;a:17:{s:2:\"id\";s:24:\"brand_style_5_36e4fzh9c2\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Brands Style Five\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_5.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:196;a:17:{s:2:\"id\";s:24:\"brand_style_6_626y7q6kqx\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style Six\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_6.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:197;a:17:{s:2:\"id\";s:24:\"brand_style_7_7ewj9uk8eh\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Brands Style Seven\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_7.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:198;a:17:{s:2:\"id\";s:33:\"business_hours_style_1_j7v23s3qpz\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Business Hours Style One\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:199;a:17:{s:2:\"id\";s:33:\"business_hours_style_2_56hyzw85z3\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Business Hours Style Two\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_2.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:200;a:17:{s:2:\"id\";s:33:\"business_hours_style_3_hn6qjpw2vh\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Business Hours Style Three\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_3.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:201;a:17:{s:2:\"id\";s:33:\"business_hours_style_4_ysem3rsb3v\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Business Hours Style Four\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_4.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:202;a:17:{s:2:\"id\";s:33:\"business_hours_style_5_sk3hh48htr\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Business Hours Style Five\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_5.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:203;a:17:{s:2:\"id\";s:25:\"button_style_1_jt3sxec3uq\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:204;a:17:{s:2:\"id\";s:25:\"button_style_2_a338pkkckx\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:205;a:17:{s:2:\"id\";s:25:\"button_style_3_nmxv8x2drn\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:206;a:17:{s:2:\"id\";s:25:\"button_style_4_df7ke8j7mc\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Button Style Four\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_4.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:207;a:17:{s:2:\"id\";s:25:\"button_style_5_vbeh4cqy4k\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Button Style Five\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_5.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:208;a:17:{s:2:\"id\";s:25:\"button_style_6_z5b2qdmtnm\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style Six\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_6.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:209;a:17:{s:2:\"id\";s:25:\"button_style_7_3zxvj8va7x\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Seven\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_7.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:210;a:17:{s:2:\"id\";s:25:\"button_style_8_jp64g9ynaj\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Eight\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_8.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:211;a:17:{s:2:\"id\";s:33:\"call_to_action_style_1_45694bbpgc\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style One\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:212;a:17:{s:2:\"id\";s:33:\"call_to_action_style_2_qwk29ma2be\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style Two\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_2.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:213;a:17:{s:2:\"id\";s:33:\"call_to_action_style_3_mf23n79yep\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Call to Action Style Three\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_3.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:214;a:17:{s:2:\"id\";s:33:\"call_to_action_style_4_xg7bqb8v5v\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Call to Action Style Four\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_4.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:215;a:17:{s:2:\"id\";s:33:\"call_to_action_style_5_4k8aadb6au\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Call to Action Style Five\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_5.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:216;a:17:{s:2:\"id\";s:33:\"call_to_action_style_6_gufnbk8m8g\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style Six\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_6.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:217;a:17:{s:2:\"id\";s:33:\"call_to_action_style_7_mta36drr8w\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Call to Action Style Seven\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_7.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:218;a:17:{s:2:\"id\";s:31:\"contact_form_style_1_95pk6bay5u\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Contact form Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:219;a:17:{s:2:\"id\";s:31:\"contact_form_style_2_j6ny3jwfhe\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Contact form Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:220;a:17:{s:2:\"id\";s:31:\"contact_form_style_3_f7r89vj3tm\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Contact form Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:221;a:17:{s:2:\"id\";s:31:\"contact_form_style_4_cxevj7xz7w\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Contact form Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:222;a:17:{s:2:\"id\";s:31:\"contact_form_style_5_97p9jy4nsm\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Contact form Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:223;a:17:{s:2:\"id\";s:31:\"contact_form_style_6_yt4utqjcn4\";s:7:\"shareId\";s:6:\"blocks\";s:7:\"tmpType\";s:12:\"contact-form\";s:5:\"title\";s:22:\"Contact form Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:224;a:17:{s:2:\"id\";s:31:\"contact_form_style_7_55jpk6bxyw\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Contact form Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:225;a:17:{s:2:\"id\";s:28:\"countdown_style_1_m7xeenwza8\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:226;a:17:{s:2:\"id\";s:28:\"countdown_style_2_r3shkhbt8u\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:227;a:17:{s:2:\"id\";s:28:\"countdown_style_3_qjnaj8wk6k\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Countdown Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:228;a:17:{s:2:\"id\";s:28:\"countdown_style_4_3yn5emh45f\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Countdown Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:229;a:17:{s:2:\"id\";s:28:\"countdown_style_5_9ycpcp39vw\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Countdown Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:230;a:17:{s:2:\"id\";s:28:\"countdown_style_6_5c42amhafe\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style Six\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_6.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:231;a:17:{s:2:\"id\";s:28:\"countdown_style_7_cw4zh6c7wp\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Countdown Style Seven\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_7.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:232;a:17:{s:2:\"id\";s:26:\"counter_style_1_qzzjt84xvf\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:233;a:17:{s:2:\"id\";s:26:\"counter_style_2_uvae6yfg5v\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:234;a:17:{s:2:\"id\";s:26:\"counter_style_3_r2ga4yyks8\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Counter Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:235;a:17:{s:2:\"id\";s:26:\"counter_style_4_btjkaf9v98\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Counter Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:236;a:17:{s:2:\"id\";s:26:\"counter_style_5_fzjft4x8xt\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Counter Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:237;a:17:{s:2:\"id\";s:26:\"counter_style_6_rms8uunp9d\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style Six\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_6.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:238;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_1_s5mekpkg4u\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:239;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_2_4qz663fbbe\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:240;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_3_rn5c8sbp6v\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Custom Carousel Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:241;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_4_v3xvn62wue\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Custom Carousel Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:242;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_5_6jkx67bjw6\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Custom Carousel Style Five\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_5.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:243;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_6_2ccnv5x8bg\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style Six\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_6.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:244;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_7_9kxmdc5hbr\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Custom Carousel Style Seven\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_7.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:245;a:17:{s:2:\"id\";s:29:\"data_table_style_1_8xw8gngqu9\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Data Table Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:246;a:17:{s:2:\"id\";s:29:\"data_table_style_2_4e3uk3db6p\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Data Table Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:247;a:17:{s:2:\"id\";s:29:\"data_table_style_3_2z4gpq49z3\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Data Table Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:248;a:17:{s:2:\"id\";s:32:\"double_button_style_1_g6c2535mts\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Double Button Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:249;a:17:{s:2:\"id\";s:32:\"double_button_style_2_egcpc4h5ck\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Double Button Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:250;a:17:{s:2:\"id\";s:32:\"double_button_style_3_3dkn67v2vd\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Double Button Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:251;a:17:{s:2:\"id\";s:32:\"double_button_style_4_p23c923sg8\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Double Button Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:252;a:17:{s:2:\"id\";s:32:\"double_button_style_5_8n94g79vy3\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Double Button Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:253;a:17:{s:2:\"id\";s:27:\"dropcaps_style_1_23sm4q233b\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Dropcaps Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:254;a:17:{s:2:\"id\";s:27:\"dropcaps_style_2_dkj8yg6wme\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Dropcaps Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:255;a:17:{s:2:\"id\";s:27:\"dropcaps_style_3_ftm3m6hvms\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Dropcaps Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:256;a:17:{s:2:\"id\";s:27:\"dropcaps_style_4_9g7ayhz6zf\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Dropcaps Style Four\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_4.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:257;a:17:{s:2:\"id\";s:27:\"dropcaps_style_5_2yuqtnb35z\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Dropcaps Style Five\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_5.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:258;a:17:{s:2:\"id\";s:22:\"faq_style_1_zpteef35wq\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Faq Style One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_1.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:259;a:17:{s:2:\"id\";s:22:\"faq_style_2_6b5ns3uphs\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Faq Style Two\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_2.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:260;a:17:{s:2:\"id\";s:22:\"faq_style_3_b7pkc8a8q8\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Faq Style Three\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_3.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:261;a:17:{s:2:\"id\";s:22:\"faq_style_4_y424ypb8te\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Faq Style Four\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_4.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:262;a:17:{s:2:\"id\";s:22:\"faq_style_5_u7yeamvc9c\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Faq Style Five\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_5.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:263;a:17:{s:2:\"id\";s:26:\"flipbox_style_1_wm249sy3nn\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Flipbox Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:264;a:17:{s:2:\"id\";s:26:\"flipbox_style_2_cf69jdjgrr\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Flipbox Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:265;a:17:{s:2:\"id\";s:26:\"flipbox_style_3_2ycw8z79kr\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Flipbox Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:266;a:17:{s:2:\"id\";s:26:\"flipbox_style_4_rdt5rcv9v3\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Flipbox Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:267;a:17:{s:2:\"id\";s:26:\"flipbox_style_5_8923jxwf7r\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Flipbox Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:268;a:17:{s:2:\"id\";s:29:\"google_map_style_1_rteuabs4ks\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:269;a:17:{s:2:\"id\";s:29:\"google_map_style_2_7s9pzx9bfc\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:270;a:17:{s:2:\"id\";s:29:\"google_map_style_3_bdvx4fgbwj\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Google Map Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:271;a:17:{s:2:\"id\";s:29:\"google_map_style_4_nmnynxc699\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Google Map Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:272;a:17:{s:2:\"id\";s:29:\"google_map_style_5_bjvn665pkq\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Google Map Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:273;a:17:{s:2:\"id\";s:29:\"google_map_style_6_yzkzgbj9z9\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style Six\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_6.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:274;a:17:{s:2:\"id\";s:29:\"google_map_style_7_ccxe5rye7e\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Google Map Style Seven\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_7.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:275;a:17:{s:2:\"id\";s:26:\"heading_style_1_pjxp9brc6p\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:276;a:17:{s:2:\"id\";s:26:\"heading_style_2_y5zmtwckwv\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:277;a:17:{s:2:\"id\";s:26:\"heading_style_3_7bgzxjhttq\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Heading Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:278;a:17:{s:2:\"id\";s:26:\"heading_style_4_b5edv2vxdf\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Heading Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:279;a:17:{s:2:\"id\";s:26:\"heading_style_5_9d756ybn23\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Heading Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:280;a:17:{s:2:\"id\";s:26:\"heading_style_6_9amhaas52f\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style Six\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_6.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:281;a:17:{s:2:\"id\";s:26:\"heading_style_7_y4xtazr3bt\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Heading Style Seven\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_7.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:282;a:17:{s:2:\"id\";s:35:\"image_comparison_style_1_acjgc7x3zy\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Image Comparison Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:283;a:17:{s:2:\"id\";s:35:\"image_comparison_style_2_zf742rjueb\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Image Comparison Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:284;a:17:{s:2:\"id\";s:35:\"image_comparison_style_3_n3fx8zdmtk\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Image Comparison Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:285;a:17:{s:2:\"id\";s:35:\"image_comparison_style_4_v8cjfqmgww\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Comparison Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:286;a:17:{s:2:\"id\";s:35:\"image_comparison_style_5_u7c2q874aq\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Comparison Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:287;a:17:{s:2:\"id\";s:32:\"image_justify_style_1_th6ystnx5s\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Justify Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:288;a:17:{s:2:\"id\";s:32:\"image_justify_style_2_z5d4c75p64\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Justify Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:289;a:17:{s:2:\"id\";s:32:\"image_justify_style_3_7634dhb6jv\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Justify Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:290;a:17:{s:2:\"id\";s:32:\"image_justify_style_4_35t5j9az3x\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Justify Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:291;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_1_8xysq7upx3\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Magnifier Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:292;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_2_f7tx5ras45\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Magnifier Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:293;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_3_d82bfytbs6\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Magnifier Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:294;a:17:{s:2:\"id\";s:31:\"image_marker_style_1_nvv326d37y\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Image Marker Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:295;a:17:{s:2:\"id\";s:31:\"image_marker_style_2_6w2b9j6ngh\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Image Marker Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:296;a:17:{s:2:\"id\";s:31:\"image_marker_style_3_y8cr2xuhhk\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Marker Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:297;a:17:{s:2:\"id\";s:31:\"image_marker_style_4_ae2fpg8tap\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Marker Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:298;a:17:{s:2:\"id\";s:31:\"image_marker_style_5_uu4rtytjfu\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Marker Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:299;a:17:{s:2:\"id\";s:32:\"image_masonry_style_1_vkud9x72gu\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Masonry Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:300;a:17:{s:2:\"id\";s:32:\"image_masonry_style_2_a75x8zpy3z\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Masonry Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:301;a:17:{s:2:\"id\";s:32:\"image_masonry_style_3_phkzfn6gc6\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Masonry Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:302;a:17:{s:2:\"id\";s:32:\"image_masonry_style_4_zm75f65fz6\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Masonry Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:303;a:17:{s:2:\"id\";s:32:\"image_masonry_style_5_8gvt86up47\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Masonry Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:304;a:17:{s:2:\"id\";s:30:\"inline_menu_style_1_7vqm3ezesn\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:305;a:17:{s:2:\"id\";s:30:\"inline_menu_style_2_hd65rh6tny\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:306;a:17:{s:2:\"id\";s:30:\"inline_menu_style_3_y74n96n9em\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Inline Menu Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:307;a:17:{s:2:\"id\";s:30:\"inline_menu_style_4_nuf489b7f3\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Inline Menu Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:308;a:17:{s:2:\"id\";s:30:\"inline_menu_style_5_28h24du9v5\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Inline Menu Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:309;a:17:{s:2:\"id\";s:30:\"inline_menu_style_6_6ejfcujvju\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:310;a:17:{s:2:\"id\";s:30:\"inline_menu_style_7_4rz9u9yjcm\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Inline Menu Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:311;a:17:{s:2:\"id\";s:33:\"instagram_feed_style_1_be97ahcn6t\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:38:\"Instagram Feed Style One (Third party)\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_feed_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_feed_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-instagram-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"instagram feed\";i:1;s:9:\"instagram\";i:2;s:4:\"feed\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:312;a:17:{s:2:\"id\";s:28:\"instagram_style_1_bph5r6g9cy\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Instagram Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:313;a:17:{s:2:\"id\";s:28:\"instagram_style_2_n8ch5bjyuu\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Instagram Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:314;a:17:{s:2:\"id\";s:28:\"instagram_style_3_s5jq39qv3f\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Instagram Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:315;a:17:{s:2:\"id\";s:28:\"instagram_style_4_8dja274mys\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Instagram Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:316;a:17:{s:2:\"id\";s:28:\"instagram_style_5_32v6w8vad7\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Instagram Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:317;a:17:{s:2:\"id\";s:28:\"light_box_style_1_84fgpc5jmq\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Light Box Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:318;a:17:{s:2:\"id\";s:28:\"light_box_style_2_st529zk5ff\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Light Box Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:319;a:17:{s:2:\"id\";s:28:\"light_box_style_3_aahbpeyx35\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Light Box Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:320;a:17:{s:2:\"id\";s:28:\"light_box_style_4_r7jx3p3ae6\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Light Box Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:321;a:17:{s:2:\"id\";s:24:\"modal_style_1_gwntq25e9q\";s:7:\"shareId\";s:5:\"modal\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Modal Style One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-modal/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:5:\"modal\";i:1;s:6:\"blocks\";i:2;s:5:\"popup\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:322;a:17:{s:2:\"id\";s:24:\"modal_style_2_9vphqmdu4m\";s:7:\"shareId\";s:5:\"modal\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Modal Style Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-modal/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:5:\"modal\";i:1;s:6:\"blocks\";i:2;s:5:\"popup\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:323;a:17:{s:2:\"id\";s:30:\"news_ticker_style_1_39gvp9n89m\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:324;a:17:{s:2:\"id\";s:30:\"news_ticker_style_2_krvt4cu3a7\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:325;a:17:{s:2:\"id\";s:30:\"news_ticker_style_3_jg24rjcrwk\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"News Ticker Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:326;a:17:{s:2:\"id\";s:30:\"news_ticker_style_4_u2rw9ud82t\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"News Ticker Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:327;a:17:{s:2:\"id\";s:30:\"news_ticker_style_5_8b2aemvkcp\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"News Ticker Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:328;a:17:{s:2:\"id\";s:30:\"news_ticker_style_6_vpgwffs3bu\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:329;a:17:{s:2:\"id\";s:30:\"news_ticker_style_7_d4adcdennq\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"News Ticker Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:330;a:17:{s:2:\"id\";s:31:\"notification_style_1_unsfh9zvya\";s:7:\"shareId\";s:12:\"notification\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Notification Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-notification/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:331;a:17:{s:2:\"id\";s:31:\"notification_style_2_2zqq88xadp\";s:7:\"shareId\";s:12:\"notification\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Notification Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-notification/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:332;a:17:{s:2:\"id\";s:28:\"offcanvas_style_1_p66amk49fm\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Off canvas Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:333;a:17:{s:2:\"id\";s:28:\"offcanvas_style_2_wrqjcc22vc\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Off canvas Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:334;a:17:{s:2:\"id\";s:28:\"offcanvas_style_3_g8xf9k9ep2\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Off canvas Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:335;a:17:{s:2:\"id\";s:28:\"offcanvas_style_4_g5zpf2kt9e\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Off canvas Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:336;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_1_fz9x4vw87f\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Page Not Found Content Style One\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_1.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:337;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_2_9bjghx4xne\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Page Not Found Content Style Two\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_2.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:338;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_3_azsrtcp7tw\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:34:\"Page Not Found Content Style Three\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_3.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:339;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_4_cf8q7swvz4\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:33:\"Page Not Found Content Style Four\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_4.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:340;a:17:{s:2:\"id\";s:31:\"panel_slider_style_1_kvg6tc8h5u\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Panel Slider Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:341;a:17:{s:2:\"id\";s:31:\"panel_slider_style_2_3qr55akzkw\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Panel Slider Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:342;a:17:{s:2:\"id\";s:31:\"panel_slider_style_3_9dvdvpja8g\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Panel Slider Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:343;a:17:{s:2:\"id\";s:31:\"panel_slider_style_4_krpx53ws9w\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Panel Slider Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:344;a:17:{s:2:\"id\";s:26:\"popover_style_1_rcevf8afja\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Popover Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:345;a:17:{s:2:\"id\";s:26:\"popover_style_2_mcwxczea3z\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Popover Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:346;a:17:{s:2:\"id\";s:26:\"popover_style_3_jr6hfc8qms\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Popover Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:347;a:17:{s:2:\"id\";s:29:\"pos_slider_style_1_ckx5h84693\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Slider Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:348;a:17:{s:2:\"id\";s:29:\"pos_slider_style_2_ca99erj8bn\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Slider Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:349;a:17:{s:2:\"id\";s:29:\"pos_slider_style_3_p2hkgym5wq\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Slider Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:350;a:17:{s:2:\"id\";s:29:\"pos_slider_style_4_4c5c85c8vx\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Post Slider Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:351;a:17:{s:2:\"id\";s:29:\"pos_slider_style_5_7kve7ka5u7\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Post Slider Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:352;a:17:{s:2:\"id\";s:31:\"post_carosul_style_1_3btcbkqn2g\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Carousel Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:353;a:17:{s:2:\"id\";s:31:\"post_carosul_style_2_fc3nfa3g89\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Carousel Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:354;a:17:{s:2:\"id\";s:31:\"post_carosul_style_3_5f5y8whky4\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Post Carousel Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:355;a:17:{s:2:\"id\";s:31:\"post_carosul_style_4_gn52cwg8c8\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Carousel Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:356;a:17:{s:2:\"id\";s:31:\"post_carosul_style_5_98tagjapff\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Carousel Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:357;a:17:{s:2:\"id\";s:28:\"post_grid_style_1_p3smsxy8sw\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Post Grid Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:358;a:17:{s:2:\"id\";s:28:\"post_grid_style_2_p7a8ykg5m9\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Post Grid Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:359;a:17:{s:2:\"id\";s:28:\"post_grid_style_3_a4yxfcs583\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Grid Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:360;a:17:{s:2:\"id\";s:28:\"post_grid_style_4_nhvq8qzt7z\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Post Grid Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:361;a:17:{s:2:\"id\";s:28:\"post_grid_style_5_2p2jjup7fz\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Post Grid Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:362;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_1_4bxg3uy2xc\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Grid Tab Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:363;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_2_w6ahtmd56p\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Grid Tab Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:364;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_3_qprpa27b7m\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Post Grid Tab Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:365;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_4_g6we2qkd78\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Grid Tab Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:366;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_5_36gt7ekdzt\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Grid Tab Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:367;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_1_xj2k6snj4u\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Pricing List View Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:368;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_2_r7zzqx3aak\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Pricing List View Style Two\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_2.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:369;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_3_wrsvkj6hex\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Pricing List View Style Three\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_3.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:370;a:17:{s:2:\"id\";s:32:\"pricing_table_style_1_jvnhcz4m28\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:371;a:17:{s:2:\"id\";s:32:\"pricing_table_style_2_urz4e786zd\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:372;a:17:{s:2:\"id\";s:32:\"pricing_table_style_3_d27f3m4jqr\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Pricing Table Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:373;a:17:{s:2:\"id\";s:32:\"pricing_table_style_4_pr45ayj6td\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Pricing Table Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:374;a:17:{s:2:\"id\";s:32:\"pricing_table_style_5_pbrqk5pc9j\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Pricing Table Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:375;a:17:{s:2:\"id\";s:32:\"pricing_table_style_6_racv3s8ug4\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style Six\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_6.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:376;a:17:{s:2:\"id\";s:32:\"pricing_table_style_7_zgkgyjs7u9\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Pricing Table Style Seven\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_7.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:377;a:17:{s:2:\"id\";s:31:\"progress_bar_style_1_udym6u7gbw\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:378;a:17:{s:2:\"id\";s:31:\"progress_bar_style_2_544k7u76m7\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:379;a:17:{s:2:\"id\";s:31:\"progress_bar_style_3_k68z7wneyx\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:380;a:17:{s:2:\"id\";s:31:\"progress_bar_style_4_v9j8qj6269\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:381;a:17:{s:2:\"id\";s:31:\"progress_bar_style_5_e8fuw2bg2y\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:382;a:17:{s:2:\"id\";s:31:\"progress_bar_style_6_bevpmvgv84\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:383;a:17:{s:2:\"id\";s:31:\"progress_bar_style_7_fy9jk4qcgk\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:384;a:17:{s:2:\"id\";s:31:\"progress_bar_style_8_4v6vs4x546\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Eight\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_8.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:385;a:17:{s:2:\"id\";s:31:\"progress_bar_style_9_u79rdqrxa2\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Nine\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_9.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:386;a:17:{s:2:\"id\";s:32:\"progress_bar_style_10_jt2j93hbts\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Ten\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_10.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:387;a:17:{s:2:\"id\";s:32:\"progress_bar_style_11_s7uwm4dd7k\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Progress Bar Style Eleven\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_11.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_11.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:388;a:17:{s:2:\"id\";s:31:\"scroll_image_style_1_5t7e6xf4fh\";s:7:\"shareId\";s:12:\"scroll-image\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Scroll Image Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-scroll-image/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:12:\"scroll image\";i:1;s:5:\"image\";i:2;s:6:\"scroll\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:389;a:17:{s:2:\"id\";s:31:\"scroll_image_style_2_6fpnvhdjdx\";s:7:\"shareId\";s:12:\"scroll-image\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Scroll Image Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-scroll-image/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:12:\"scroll image\";i:1;s:5:\"image\";i:2;s:6:\"scroll\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:390;a:17:{s:2:\"id\";s:36:\"scroll_navigation_style_1_t526tv3ryx\";s:7:\"shareId\";s:17:\"scroll-navigation\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Scroll Navigation Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_navigation_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_navigation_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-scroll-navigation/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:17:\"scroll navigation\";i:1;s:6:\"scroll\";i:2;s:10:\"navigation\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:391;a:17:{s:2:\"id\";s:30:\"search_form_style_1_9an6akfpk8\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Search Form Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:392;a:17:{s:2:\"id\";s:30:\"search_form_style_2_tszye446bn\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Search Form Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:393;a:17:{s:2:\"id\";s:30:\"search_form_style_3_4fjx95bkd3\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Search Form Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:394;a:17:{s:2:\"id\";s:30:\"search_form_style_4_wx3ab4ggwz\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Search Form Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:395;a:17:{s:2:\"id\";s:30:\"search_form_style_5_hmdy654wds\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Search Form Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:396;a:17:{s:2:\"id\";s:27:\"services_style_1_bwvhy2c84g\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:397;a:17:{s:2:\"id\";s:27:\"services_style_2_ag962rmqxr\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:398;a:17:{s:2:\"id\";s:27:\"services_style_3_g47g88ey6n\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Services Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:399;a:17:{s:2:\"id\";s:27:\"services_style_4_ss6adkhx52\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Services Style Four\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_4.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:400;a:17:{s:2:\"id\";s:27:\"services_style_5_wh8b5vv54n\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Services Style Five\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_5.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:401;a:17:{s:2:\"id\";s:27:\"services_style_6_ruh2czd6nh\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style Six\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_6.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:402;a:17:{s:2:\"id\";s:27:\"services_style_7_9uyap4n7k8\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Services Style Seven\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_7.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:403;a:17:{s:2:\"id\";s:30:\"single_post_style_1_v5bfzs2tfn\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Single Post Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:404;a:17:{s:2:\"id\";s:30:\"single_post_style_2_xytnafdr66\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Single Post Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:405;a:17:{s:2:\"id\";s:30:\"single_post_style_3_p285gdqv8p\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Single Post Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:406;a:17:{s:2:\"id\";s:30:\"single_post_style_4_mtaxq3kgnx\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Single Post Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:407;a:17:{s:2:\"id\";s:30:\"single_post_style_5_kd7n4zyatw\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Single Post Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:408;a:17:{s:2:\"id\";s:31:\"social_share_style_1_3uzr333n7p\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:409;a:17:{s:2:\"id\";s:31:\"social_share_style_2_fs942wsyab\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:410;a:17:{s:2:\"id\";s:31:\"social_share_style_3_5c9aufg322\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:411;a:17:{s:2:\"id\";s:31:\"social_share_style_4_6g43sh6dzy\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:412;a:17:{s:2:\"id\";s:31:\"social_share_style_5_bmx7xv9673\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:413;a:17:{s:2:\"id\";s:31:\"social_share_style_6_u456uy4qxp\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:414;a:17:{s:2:\"id\";s:31:\"social_share_style_7_ynanq33uec\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:415;a:17:{s:2:\"id\";s:31:\"social_share_style_8_vb6shd4uwr\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Eight\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_8.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:416;a:17:{s:2:\"id\";s:31:\"social_share_style_9_wxe528kusc\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Nine\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_9.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:417;a:17:{s:2:\"id\";s:28:\"subscribe_style_1_8un95pye7f\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Subscribe Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:418;a:17:{s:2:\"id\";s:28:\"subscribe_style_2_78zexgwe69\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Subscribe Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:419;a:17:{s:2:\"id\";s:28:\"subscribe_style_3_u76sbj65yr\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Subscribe Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:420;a:17:{s:2:\"id\";s:28:\"subscribe_style_4_erxfmyzk7f\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Subscribe Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:421;a:17:{s:2:\"id\";s:28:\"subscribe_style_5_hv234wgscs\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Subscribe Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:422;a:17:{s:2:\"id\";s:27:\"switcher_style_1_c9h3ctrxaq\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Switcher Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:423;a:17:{s:2:\"id\";s:27:\"switcher_style_2_dgc88nqwfz\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Switcher Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:424;a:17:{s:2:\"id\";s:27:\"switcher_style_3_q6kxgtus44\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Switcher Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:425;a:17:{s:2:\"id\";s:22:\"tab_style_1_mekdzf8w5x\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Tab Style One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_1.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:426;a:17:{s:2:\"id\";s:22:\"tab_style_2_4z6kr95dr7\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Tab Style Two\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_2.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:427;a:17:{s:2:\"id\";s:22:\"tab_style_3_d53z3kvqrh\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Tab Style Three\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_3.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:428;a:17:{s:2:\"id\";s:22:\"tab_style_4_hxwey7ekrq\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Tab Style Four\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_4.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:429;a:17:{s:2:\"id\";s:22:\"tab_style_5_k22v67k83j\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Tab Style Five\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_5.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:430;a:17:{s:2:\"id\";s:30:\"team_member_style_1_eppn2stb86\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:431;a:17:{s:2:\"id\";s:30:\"team_member_style_2_mpeeytw8bt\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:432;a:17:{s:2:\"id\";s:30:\"team_member_style_3_j2x82w7m7k\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:433;a:17:{s:2:\"id\";s:30:\"team_member_style_4_mrdmhss77d\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Team Member Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:434;a:17:{s:2:\"id\";s:30:\"team_member_style_5_e8p6mc5umz\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Team Member Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:435;a:17:{s:2:\"id\";s:30:\"team_member_style_6_b3ets3u9p7\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:436;a:17:{s:2:\"id\";s:30:\"team_member_style_7_u7tzqjqry5\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:437;a:17:{s:2:\"id\";s:30:\"team_member_style_8_9s72yx6dgz\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Eight\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_8.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:438;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_1_hlyuhnhd9u\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style One\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_1.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:439;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_2_onssr4f2zo\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style Two\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_2.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:440;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_3_w1svre56m6\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Three\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_3.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:441;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_4_9hn18azb1d\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Four\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_4.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:442;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_5_y3oj2nltgj\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Five\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_5.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:443;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_6_b09tws8ixf\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style Six\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_6.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:444;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_7_a348ntx5tp\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Seven\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_7.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:445;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_8_k925rlr55h\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Eight\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_8.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:446;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_9_8e5eqxi9jy\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Nine\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_9.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:447;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_1_qd4g4v7ild\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Testimonial Grid Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:448;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_2_31e417al2d\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Testimonial Grid Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:449;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_3_yup8k13zuu\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Testimonial Grid Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:450;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_4_x80mojmfqo\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Testimonial Grid Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:451;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_5_h8sybzp00j\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Testimonial Grid Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:452;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_1_liy9j6a4sw\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Thumbnails Gallery Style One\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_1.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:453;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_2_ufc22xec5k\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Thumbnails Gallery Style Two\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_2.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:454;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_3_07538rgt40\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Thumbnails Gallery Style Three\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_3.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:455;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_4_q03tgw5rel\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Thumbnails Gallery Style Four\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_4.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:456;a:17:{s:2:\"id\";s:25:\"toggle_style_1_0sclk1jnhv\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Toggle Style One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:457;a:17:{s:2:\"id\";s:25:\"toggle_style_2_mb4029rnr8\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Toggle Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:458;a:17:{s:2:\"id\";s:25:\"toggle_style_3_0ymbq8xpdf\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Toggle Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:459;a:17:{s:2:\"id\";s:26:\"tooltip_style_1_tsf945zq7k\";s:7:\"shareId\";s:7:\"tooltip\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:7:\"Tooltip\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tooltip_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tooltip_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-tooltip/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"tooltip\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:460;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_1_udxkxc9jlm\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Twitter Feed Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:461;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_2_fbxf7xmu4v\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Twitter Feed Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:462;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_3_sx6ji2pl9n\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Twitter Feed Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:463;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_4_h6betz0r4f\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Twitter Feed Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:464;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_5_3th1qp6c87\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Twitter Feed Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:465;a:17:{s:2:\"id\";s:34:\"user_login_form_style_1_s06m851pob\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"User Login Form Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:466;a:17:{s:2:\"id\";s:34:\"user_login_form_style_2_gp2blr7u64\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"User Login Form Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:467;a:17:{s:2:\"id\";s:34:\"user_login_form_style_3_rdxrfgf0bf\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"User Login Form Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:468;a:17:{s:2:\"id\";s:34:\"user_login_form_style_4_9o3hca1337\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"User Login Form Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:469;a:17:{s:2:\"id\";s:34:\"user_login_form_style_5_rzcb4xr7rl\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"User Login Form Style Five\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_5.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:470;a:17:{s:2:\"id\";s:32:\"user_register_style_1_jo7axqv8mm\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"User Register Form Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:471;a:17:{s:2:\"id\";s:32:\"user_register_style_2_l6yq1hun03\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"User Register Form Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:472;a:17:{s:2:\"id\";s:32:\"user_register_style_3_r0o96wkojg\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"User Register Form Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:473;a:17:{s:2:\"id\";s:32:\"user_register_style_4_6ns1vzavnf\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"User Register Form Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:474;a:17:{s:2:\"id\";s:32:\"user_register_style_5_jtf0h4c0qb\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"User Register Form Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:475;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_1_ougcvd1bug\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Vertical Timeline Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:476;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_2_e68bj78wlw\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Vertical Timeline Style Two\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_2.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:477;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_3_kr7719268c\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Vertical Timeline Style Three\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_3.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:478;a:17:{s:2:\"id\";s:31:\"video_player_style_1_fy78h0vyah\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Video Player Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:479;a:17:{s:2:\"id\";s:31:\"video_player_style_2_u7gen4qpkb\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Video Player Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:480;a:17:{s:2:\"id\";s:31:\"video_player_style_3_arj5tv00yc\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Video Player Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:481;a:17:{s:2:\"id\";s:31:\"video_player_style_4_lgx1m1kd7y\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Video Player Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:482;a:17:{s:2:\"id\";s:26:\"weather_style_1_32zautjaos\";s:7:\"shareId\";s:7:\"weather\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Weather Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/weather_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/weather_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-weather/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"weather\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:483;a:17:{s:2:\"id\";s:41:\"woocommerce_add_to_cart_button_6g8fpvr3p7\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"WooCommerce Add To Cart\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_add_to_cart_button.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_add_to_cart_button.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:62:\"http://demo.wphash.com/htmega/element-woocommerce-add-to-cart/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:11:\"add to cart\";i:1;s:6:\"blocks\";i:2;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:484;a:17:{s:2:\"id\";s:32:\"woocommerce_cart_page_cqqy50ybwv\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"WooCommerce Cart Page\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_cart_page.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_cart_page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/element-woocommerce-cart-page/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"cart page\";i:1;s:11:\"woocommerce\";i:2;s:6:\"blocks\";i:3;s:4:\"page\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:485;a:17:{s:2:\"id\";s:31:\"woocommerce_category_01wxfbh3ge\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"WooCommerce Category Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_category.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_category.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:59:\"http://demo.wphash.com/htmega/element-woocommerce-category/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"category page\";i:1;s:8:\"category\";i:2;s:6:\"blocks\";i:3;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:486;a:17:{s:2:\"id\";s:36:\"woocommerce_checkout_page_yj01hu27zk\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"WooCommerce Checkout Page\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_checkout_page.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_checkout_page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-checkout-page/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"checkout page\";i:1;s:8:\"checkout\";i:2;s:4:\"page\";i:3;s:6:\"blocks\";i:4;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:487;a:17:{s:2:\"id\";s:34:\"working_process_style_1_x5b6d6s8y4\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Working Progress Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:488;a:17:{s:2:\"id\";s:34:\"working_process_style_2_2db15ccu1g\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Working Progress Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:489;a:17:{s:2:\"id\";s:34:\"working_process_style_3_z1cfo5eugm\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Working Progress Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:490;a:17:{s:2:\"id\";s:34:\"working_process_style_4_mfu7ssf7xu\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Working Progress Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:491;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-1_nud72anbaq\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.shrimpthemes.com/1/megamenu/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:492;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-2_n29a43xw43\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:493;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-3_5shz3rfvk8\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Three\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_3.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.shrimpthemes.com/1/megamenu/home-three/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:494;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-4_68ete7pa9g\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Four\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_4.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:58:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-product/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:495;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-5_b9qfvdz9yh\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Five\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_5.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-map/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:496;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-6_vvm8qqynmp\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Six\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_6.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:497;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-7_kkvzxqmc8f\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Seven\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_7.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-image/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:498;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-8_9gpnpqn3yb\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Eight\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_8.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-post/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:499;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-9_3eecfdhfd9\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Nine\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_9.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-categories/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:500;a:17:{s:2:\"id\";s:30:\"mega-menu-layout-10_mnccf7239b\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Ten\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_10.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:501;a:17:{s:2:\"id\";s:14:\"header-1-17752\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-1.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:502;a:17:{s:2:\"id\";s:14:\"header-2-15569\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Two\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-2.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:503;a:17:{s:2:\"id\";s:14:\"header-3-18697\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Three\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-3.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:504;a:17:{s:2:\"id\";s:14:\"header-4-18564\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Four\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-4.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:505;a:17:{s:2:\"id\";s:14:\"header-5-16078\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Five\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-5.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:506;a:17:{s:2:\"id\";s:14:\"header-6-15369\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Six\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-6.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:507;a:17:{s:2:\"id\";s:14:\"header-7-16242\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Seven\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-7.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:508;a:17:{s:2:\"id\";s:14:\"header-8-15269\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Eight\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-8.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:509;a:17:{s:2:\"id\";s:14:\"header-9-17118\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Nine\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-9.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:510;a:17:{s:2:\"id\";s:15:\"header-10-18087\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Ten\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-10.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:511;a:17:{s:2:\"id\";s:14:\"footer-1-17752\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-1.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:512;a:17:{s:2:\"id\";s:14:\"footer-2-15444\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Two\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-2.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:513;a:17:{s:2:\"id\";s:14:\"footer-3-16047\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Three\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-3.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:514;a:17:{s:2:\"id\";s:14:\"footer-4-15702\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Four\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-4.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:515;a:17:{s:2:\"id\";s:14:\"footer-5-17959\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Five\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-5.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:516;a:17:{s:2:\"id\";s:14:\"footer-6-16049\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Six\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-6.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:517;a:17:{s:2:\"id\";s:14:\"footer-7-18195\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Seven\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-7.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:518;a:17:{s:2:\"id\";s:14:\"footer-8-16769\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Eight\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-8.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:519;a:17:{s:2:\"id\";s:14:\"footer-9-15365\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Nine\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-9.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:520;a:17:{s:2:\"id\";s:15:\"footer-10-18245\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Ten\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-10.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:521;a:17:{s:2:\"id\";s:19:\"blog-layout-1-17113\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:15:\"Blog Layout One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-1.jpg\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:522;a:17:{s:2:\"id\";s:19:\"blog-layout-2-18629\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:15:\"Blog Layout Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-2.jpg\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:36:\"http://demo.wphash.com/2/ht-builder/\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:523;a:17:{s:2:\"id\";s:20:\"blog-details-1-16721\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:16:\"Blog Details One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-details-1.jpg\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-details-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:67:\"http://demo.wphash.com/2/ht-builder/the-top-20-trends-of-the-world/\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:4:{i:0;s:4:\"blog\";i:1;s:9:\"blog page\";i:2;s:6:\"blocks\";i:3;s:12:\"blog details\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}}}','no');
INSERT INTO `wp_options` VALUES (1043,'htmega_info_library_data','a:3:{s:7:\"notices\";a:1:{i:0;a:5:{s:5:\"title\";s:12:\"Cyber Monday\";s:11:\"description\";s:1:\"#\";s:11:\"bannerimage\";s:1:\"#\";s:10:\"bannerlink\";s:1:\"#\";s:6:\"status\";s:1:\"0\";}}s:8:\"pro_link\";a:1:{i:0;a:1:{s:3:\"url\";s:42:\"https://hasthemes.com/plugins/ht-mega-pro/\";}}s:9:\"templates\";a:524:{i:0;a:17:{s:2:\"id\";s:17:\"agency_45d8s2bj95\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency.png\";s:9:\"fullimage\";s:66:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/agency/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:4:\"home\";i:1;s:6:\"agency\";i:2;s:12:\"landing page\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:1;a:17:{s:2:\"id\";s:25:\"agency_aboutus_n8m2kmxbz8\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-aboutus.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-agency/about-us/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:5:\"about\";i:1;s:4:\"page\";i:2;s:8:\"about us\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:2;a:17:{s:2:\"id\";s:27:\"agency_contactus_gvp6vkz39j\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-contactus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-agency/contact-us/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:7:\"contact\";i:1;s:4:\"page\";i:2;s:10:\"contact us\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:3;a:17:{s:2:\"id\";s:25:\"agency_service_etqju45qvp\";s:7:\"shareId\";s:6:\"agency\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-agency/service/\";s:8:\"category\";s:6:\"agency\";s:4:\"tags\";a:4:{i:0;s:7:\"service\";i:1;s:4:\"page\";i:2;s:12:\"service page\";i:3;s:6:\"agency\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:4;a:17:{s:2:\"id\";s:20:\"carpenter_2kemcu3f55\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/carpenter/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:4:\"home\";i:2;s:4:\"page\";i:3;s:12:\"landing page\";i:4;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:5;a:17:{s:2:\"id\";s:28:\"carpenter_gallery_r95zup934a\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:12:\"Gallery Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-gallery.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-carpenter/gallery/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:4:\"page\";i:2;s:7:\"gallery\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:6;a:17:{s:2:\"id\";s:28:\"carpenter_service_9d3h95pvjz\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-carpenter/service/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:7;a:17:{s:2:\"id\";s:30:\"carpenter_contactus_mgcbf4yg3b\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-carpenter/contact-us/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:8;a:17:{s:2:\"id\";s:28:\"carpenter_aboutus_xk8t76bfq8\";s:7:\"shareId\";s:9:\"carpenter\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-carpenter/about-us/\";s:8:\"category\";s:9:\"carpenter\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"carpenter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:9;a:17:{s:2:\"id\";s:18:\"charity_n3er8mc5cj\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/charity/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:12:\"landing page\";i:4;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:10;a:17:{s:2:\"id\";s:24:\"charity_cause_v4j4x3nkgg\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:10:\"Cause Page\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-cause.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-cause.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-charity/cause/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:10:\"cause page\";i:1;s:5:\"cause\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:11;a:17:{s:2:\"id\";s:24:\"charity_event_4tmcyzb49m\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:10:\"Event Page\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-event.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-charity/event/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:12;a:17:{s:2:\"id\";s:28:\"charity_volunteer_kzjb9qj5h8\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:14:\"Volunteer Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-volunteer.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-volunteer.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-charity/volunteer/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:14:\"volunteer page\";i:1;s:9:\"volunteer\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:13;a:17:{s:2:\"id\";s:26:\"charity_gallery_2rk36ac49b\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:12:\"Gallery Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-gallery.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-charity/gallery/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:7:\"gallery\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:14;a:17:{s:2:\"id\";s:26:\"charity_aboutus_jem34qmthq\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-aboutus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-charity/about-us/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:15;a:17:{s:2:\"id\";s:28:\"charity_contactus_769kcm8gky\";s:7:\"shareId\";s:7:\"charity\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-contactus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-charity/contact-us/\";s:8:\"category\";s:7:\"charity\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"charity\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:16;a:17:{s:2:\"id\";s:27:\"cleaning_service_g8m6v9dchv\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/cleaning-service/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:17;a:17:{s:2:\"id\";s:31:\"cleaning_servicepage_q9a9swt5h2\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-servicepage.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-servicepage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-cleaning/service/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:18;a:17:{s:2:\"id\";s:29:\"cleaning_contactus_xzgd43g5dz\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-contactus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-cleaning/contact-us/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:19;a:17:{s:2:\"id\";s:27:\"cleaning_aboutus_qyuvwz3nhk\";s:7:\"shareId\";s:16:\"cleaning service\";s:5:\"title\";s:13:\"About Us Page\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-aboutus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-cleaning/about-us/\";s:8:\"category\";s:16:\"cleaning service\";s:4:\"tags\";a:5:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:8:\"cleaning\";i:4;s:5:\"clean\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:20;a:17:{s:2:\"id\";s:23:\"construction_x8g564jfuf\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/construction/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:5:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:21;a:17:{s:2:\"id\";s:31:\"construction_service_uqquxwb3sd\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:12:\"Service Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-construction/service/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:22;a:17:{s:2:\"id\";s:31:\"construction_aboutus_b6ekh8935j\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-aboutus.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-construction/about/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:23;a:17:{s:2:\"id\";s:33:\"construction_contactus_ydrrbg84f7\";s:7:\"shareId\";s:12:\"construction\";s:5:\"title\";s:15:\"Contact Us Page\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-contactus.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-construction/contact/\";s:8:\"category\";s:12:\"construction\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:12:\"construction\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:24;a:17:{s:2:\"id\";s:20:\"corporate_znr56pbqm8\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/corporate/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:7:\"landing\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:25;a:17:{s:2:\"id\";s:28:\"corporate_service_pcpk4u7eak\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-corporate/service/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:26;a:17:{s:2:\"id\";s:30:\"corporate_portfolio_3y4xbbdz38\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-portfolio.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-portfolio.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-corporate/portfolio/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:14:\"portfolio page\";i:1;s:9:\"portfolio\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:27;a:17:{s:2:\"id\";s:25:\"corporate_team_pqr5wjat4y\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:11:\"Team Member\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-team.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-team.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-corporate/team/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:5:{i:0;s:16:\"team member page\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:4:\"page\";i:4;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:28;a:17:{s:2:\"id\";s:28:\"corporate_aboutus_jxs7r3m5at\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-corporate/about-us/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:29;a:17:{s:2:\"id\";s:30:\"corporate_contactus_tazs9b3d4v\";s:7:\"shareId\";s:9:\"corporate\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-corporate/contact-us/\";s:8:\"category\";s:9:\"corporate\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"corporate\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:30;a:17:{s:2:\"id\";s:20:\"education_8rfettzq6r\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/education/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:31;a:17:{s:2:\"id\";s:26:\"education_event_8aja65gjpr\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-event.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-education/event/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:32;a:17:{s:2:\"id\";s:28:\"education_teacher_55bbjt6jcf\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:7:\"Teacher\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-teacher.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-teacher.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-education/teacher/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:12:\"teacher page\";i:1;s:7:\"teacher\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:33;a:17:{s:2:\"id\";s:27:\"education_course_8n699mwe69\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:6:\"Course\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-course.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-course.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-education/course/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:11:\"course page\";i:1;s:6:\"course\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:34;a:17:{s:2:\"id\";s:28:\"education_aboutus_t4azaf84uu\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-education/about-us/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:35;a:17:{s:2:\"id\";s:30:\"education_contactus_7p5mc2s3zs\";s:7:\"shareId\";s:9:\"education\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-education/contact-us/\";s:8:\"category\";s:9:\"education\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"education\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:36;a:17:{s:2:\"id\";s:16:\"event_522h7svr4j\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-page.png\";s:9:\"fullimage\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/event-page/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:37;a:17:{s:2:\"id\";s:24:\"event_speaker_55ufe49m8n\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:7:\"Speaker\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-speaker.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-speaker.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-event/speaker/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:12:\"speaker page\";i:1;s:7:\"speaker\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:38;a:17:{s:2:\"id\";s:26:\"event_eventpage_vps3p2s22g\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:10:\"Event Page\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-eventpage.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-eventpage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/ht-event/event/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:39;a:17:{s:2:\"id\";s:26:\"event_contactus_2ujgh8s2dw\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-contactus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-event/contact/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:40;a:17:{s:2:\"id\";s:24:\"event_aboutus_a67zz54e6g\";s:7:\"shareId\";s:5:\"event\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-aboutus.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/ht-event/about/\";s:8:\"category\";s:5:\"event\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:5:\"event\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:41;a:17:{s:2:\"id\";s:20:\"gardening_kws6z7rc9g\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/gardening/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:6:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"gardening\";i:5;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:42;a:17:{s:2:\"id\";s:28:\"gardening_service_43ucbz93rr\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-gardening/service/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:43;a:17:{s:2:\"id\";s:28:\"gardening_aboutus_w5h4mc4225\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-gardening/about/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:44;a:17:{s:2:\"id\";s:30:\"gardening_contactus_grjme9fsm3\";s:7:\"shareId\";s:9:\"gardening\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-gardening/contact/\";s:8:\"category\";s:9:\"gardening\";s:4:\"tags\";a:5:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"gardening\";i:4;s:6:\"garden\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:45;a:17:{s:2:\"id\";s:18:\"medical_w65t8v825k\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/medical/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:46;a:17:{s:2:\"id\";s:26:\"medical_service_b7j9ty4qeu\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-service.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-medical/service/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:47;a:17:{s:2:\"id\";s:28:\"medical_contactus_y23y63w2qn\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-contactus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-medical/contact/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:48;a:17:{s:2:\"id\";s:26:\"medical_aboutus_ymcvt43pdx\";s:7:\"shareId\";s:7:\"medical\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-aboutus.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/ht-medical/about/\";s:8:\"category\";s:7:\"medical\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"medical\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:49;a:17:{s:2:\"id\";s:20:\"political_pjek38pd8w\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/political/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:50;a:17:{s:2:\"id\";s:26:\"political_event_nx3h3ve89q\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-event.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/ht-political/event/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:51;a:17:{s:2:\"id\";s:28:\"political_gallery_ubb35z3qe6\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:7:\"Gallery\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-gallery.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-gallery.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-political/gallery/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:12:\"gallery page\";i:1;s:7:\"gallery\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:52;a:17:{s:2:\"id\";s:28:\"political_aboutus_k68jqsht87\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-political/about-us/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:53;a:17:{s:2:\"id\";s:30:\"political_contactus_yqsx2am63e\";s:7:\"shareId\";s:9:\"political\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-political/contact-us/\";s:8:\"category\";s:9:\"political\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"political\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:54;a:17:{s:2:\"id\";s:20:\"portfolio_v2tg9dwcwe\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-page.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/portfolio-page/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:55;a:17:{s:2:\"id\";s:28:\"portfolio_aboutus_vq38yq7y9t\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-aboutus.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/ht-portfolio/about-us/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:56;a:17:{s:2:\"id\";s:30:\"portfolio_portfolio_qgr95dqrxj\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-portfoliopage.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-portfoliopage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-portfolio/portfolio/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:14:\"portfolio page\";i:1;s:9:\"portfolio\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:57;a:17:{s:2:\"id\";s:28:\"portfolio_service_7wgc9597sk\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-portfolio/service/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:58;a:17:{s:2:\"id\";s:30:\"portfolio_contactus_my822kr36d\";s:7:\"shareId\";s:9:\"portfolio\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-contactus.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/ht-portfolio/contact-us/\";s:8:\"category\";s:9:\"portfolio\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"portfolio\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:59;a:17:{s:2:\"id\";s:17:\"repair_a9q9e56ee7\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair.png\";s:9:\"fullimage\";s:66:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/repair/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"page\";i:4;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:60;a:17:{s:2:\"id\";s:25:\"repair_service_eq47kz447a\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-repair/service/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:61;a:17:{s:2:\"id\";s:25:\"repair_aboutus_t2rp7mzmn3\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-aboutus.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/ht-repair/about/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:62;a:17:{s:2:\"id\";s:27:\"repair_contactus_wyq6te4d8m\";s:7:\"shareId\";s:6:\"repair\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-contactus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-repair/contact/\";s:8:\"category\";s:6:\"repair\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"repair\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:63;a:17:{s:2:\"id\";s:19:\"software_vb4agp6wbp\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:4:\"Home\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/htmega/software/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:7:\"landing\";i:4;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:64;a:17:{s:2:\"id\";s:27:\"software_service_htphkdaz63\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/ht-software/service/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:65;a:17:{s:2:\"id\";s:27:\"software_pricing_a8kwetru2w\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:12:\"Pricing Plan\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-pricingplan.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-pricingplan.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/ht-software/pricing-plan/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing plan page\";i:1;s:7:\"pricing\";i:2;s:4:\"plan\";i:3;s:4:\"page\";i:4;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:66;a:17:{s:2:\"id\";s:29:\"software_contactus_4fkuuga2ab\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-contactus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/ht-software/contact-us/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:67;a:17:{s:2:\"id\";s:27:\"software_aboutus_2fac7pq3mq\";s:7:\"shareId\";s:8:\"software\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-aboutus.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/ht-software/about-us/\";s:8:\"category\";s:8:\"software\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:8:\"software\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:68;a:17:{s:2:\"id\";s:21:\"travelling_ymr5grsutm\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling.png\";s:9:\"fullimage\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/travelling/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"page\";i:4;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:69;a:17:{s:2:\"id\";s:29:\"travelling_service_78nc6prkbm\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-travel/service/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:70;a:17:{s:2:\"id\";s:29:\"travelling_aboutus_479unvj6w5\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-aboutus.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-aboutus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/ht-travel/about/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:71;a:17:{s:2:\"id\";s:31:\"travelling_contactus_d85zbtkms9\";s:7:\"shareId\";s:10:\"travelling\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-contactus.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-contactus.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/ht-travel/contact/\";s:8:\"category\";s:10:\"travelling\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"travelling\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:72;a:17:{s:2:\"id\";s:26:\"ashram_buddhist_y66ev99gbj\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/buddhist.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/buddhist.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:6:\"ashram\";i:5;s:8:\"buddhist\";i:6;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:73;a:17:{s:2:\"id\";s:34:\"ashram_buddhist_program_1a6pml2e3o\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:7:\"Program\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_program.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_program.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/program-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:12:\"program page\";i:1;s:7:\"program\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:74;a:17:{s:2:\"id\";s:35:\"ashram_buddhist_about_us_x761aavx58\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:75;a:17:{s:2:\"id\";s:37:\"ashram_buddhist_contact_us_y25qvjt4it\";s:7:\"shareId\";s:15:\"ashram buddhist\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-ashram-buddhist/\";s:8:\"category\";s:15:\"ashram buddhist\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"ashram\";i:4;s:8:\"buddhist\";i:5;s:15:\"ashram buddhist\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:76;a:17:{s:2:\"id\";s:28:\"broadband_telecom_ua8s5hmv98\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadbandtelecom.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadbandtelecom.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:4:\"home\";i:4;s:9:\"broadband\";i:5;s:17:\"broadband telecom\";i:6;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:77;a:17:{s:2:\"id\";s:36:\"broadband_telecom_service_9cpi1ydrqb\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_service.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/service-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:78;a:17:{s:2:\"id\";s:37:\"broadband_telecom_about_us_vsqp66ef31\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_about_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/about-us-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:79;a:17:{s:2:\"id\";s:39:\"broadband_telecom_contact_us_ccq31rgdsd\";s:7:\"shareId\";s:17:\"broadband telecom\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:89:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_contact_us.png\";s:9:\"fullimage\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:59:\"http://demo.wphash.com/htmega/contact-us-broadband-telecom/\";s:8:\"category\";s:17:\"broadband telecom\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"broadband\";i:4;s:17:\"broadband telecom\";i:5;s:7:\"telecom\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:80;a:17:{s:2:\"id\";s:30:\"campgrounds_camping_hcpk4m63xu\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgroundsandcamping.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgroundsandcamping.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:4:\"page\";i:5;s:11:\"campgrounds\";i:6;s:7:\"camping\";i:7;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:81;a:17:{s:2:\"id\";s:45:\"campgrounds_and_camping_activities_kw1iw1w5om\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:10:\"Activities\";s:9:\"thumbnail\";s:95:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_activities.png\";s:9:\"fullimage\";s:94:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_activities.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:65:\"http://demo.wphash.com/htmega/activities-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:5:{i:0;s:10:\"activities\";i:1;s:4:\"page\";i:2;s:11:\"campgrounds\";i:3;s:7:\"camping\";i:4;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:82;a:17:{s:2:\"id\";s:43:\"campgrounds_and_camping_about_us_k88jokwiry\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:93:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_about_us.png\";s:9:\"fullimage\";s:92:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:63:\"http://demo.wphash.com/htmega/about-us-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:11:\"campgrounds\";i:4;s:7:\"camping\";i:5;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:83;a:17:{s:2:\"id\";s:45:\"campgrounds_and_camping_contact_us_46xcu9c7g3\";s:7:\"shareId\";s:23:\"campgrounds and camping\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:95:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_contact_us.png\";s:9:\"fullimage\";s:94:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:65:\"http://demo.wphash.com/htmega/contact-us-campgrounds-and-camping/\";s:8:\"category\";s:23:\"campgrounds and camping\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:11:\"campgrounds\";i:4;s:7:\"camping\";i:5;s:23:\"campgrounds and camping\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:84;a:17:{s:2:\"id\";s:21:\"dairy_farm_5zmthqw83e\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairyfarm.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairyfarm.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:7:\"landing\";i:4;s:4:\"home\";i:5;s:10:\"dairy farm\";i:6;s:5:\"dairy\";i:7;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:85;a:17:{s:2:\"id\";s:29:\"dairy_farm_service_7bz4tbo6fw\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/service-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:86;a:17:{s:2:\"id\";s:30:\"dairy_farm_about_us_1dqiqkoyxg\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_about_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/about-us-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:87;a:17:{s:2:\"id\";s:32:\"dairy_farm_contact_us_cswif0ssy5\";s:7:\"shareId\";s:10:\"dairy farm\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_contact_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/contact-us-dairy-farm/\";s:8:\"category\";s:10:\"dairy farm\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"dairy farm\";i:4;s:5:\"dairy\";i:5;s:4:\"farm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:88;a:17:{s:2:\"id\";s:41:\"dermatology_clinic_cosmetology_peg2kmxsuv\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_clinic_cosmetology.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_clinic_cosmetology.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"page\";i:3;s:4:\"home\";i:4;s:34:\"dermatology clinic and cosmetology\";i:5;s:11:\"dermatology\";i:6;s:6:\"clinic\";i:7;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:89;a:17:{s:2:\"id\";s:30:\"dermatology_service_5laeueg3ds\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_service.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:69:\"http://demo.wphash.com/htmega/service-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:90;a:17:{s:2:\"id\";s:31:\"dermatology_about_us_484rfxkm2e\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_about_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:70:\"http://demo.wphash.com/htmega/about-us-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:91;a:17:{s:2:\"id\";s:33:\"dermatology_contact_us_0j7x4xdglg\";s:7:\"shareId\";s:34:\"dermatology clinic and cosmetology\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_contact_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:72:\"http://demo.wphash.com/htmega/contact-us-dermatology-clinic-cosmetology/\";s:8:\"category\";s:34:\"dermatology clinic and cosmetology\";s:4:\"tags\";a:7:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:34:\"dermatology clinic and cosmetology\";i:4;s:11:\"dermatology\";i:5;s:6:\"clinic\";i:6;s:11:\"cosmetology\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:92;a:17:{s:2:\"id\";s:24:\"environmental_qeq23ubt9g\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:93;a:17:{s:2:\"id\";s:30:\"environmental_event_ej76jon9c2\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:5:\"Event\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_event.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_event.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/event-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:10:\"event page\";i:1;s:5:\"event\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:94;a:17:{s:2:\"id\";s:32:\"environmental_project_juelxbd9j5\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:12:\"Project Page\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_project.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_project.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/project-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:12:\"project page\";i:1;s:7:\"project\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:95;a:17:{s:2:\"id\";s:33:\"environmental_about_us_759fe54f5s\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_about_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/about-us-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:96;a:17:{s:2:\"id\";s:35:\"environmental_contact_us_al5tklwk8n\";s:7:\"shareId\";s:13:\"environmental\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_contact_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/contact-us-environmental/\";s:8:\"category\";s:13:\"environmental\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:13:\"environmental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:97;a:17:{s:2:\"id\";s:23:\"fire_station_u6wtkus29f\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:12:\"fire station\";i:5;s:4:\"fire\";i:6;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:98;a:17:{s:2:\"id\";s:31:\"fire_station_service_vq26ims8uo\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/service-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:99;a:17:{s:2:\"id\";s:32:\"fire_station_about_us_6j3uuf9e6n\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_about_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/about-us-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:100;a:17:{s:2:\"id\";s:34:\"fire_station_contact_us_45y487wwve\";s:7:\"shareId\";s:12:\"fire station\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_contact_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/contact-us-fire-station/\";s:8:\"category\";s:12:\"fire station\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:12:\"fire station\";i:4;s:4:\"fire\";i:5;s:7:\"station\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:101;a:17:{s:2:\"id\";s:18:\"funeral_wj7c4b6vam\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral.png\";s:9:\"fullimage\";s:67:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"home\";i:2;s:7:\"landing\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:102;a:17:{s:2:\"id\";s:26:\"funeral_service_skd4dobrj2\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_service.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/service-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:103;a:17:{s:2:\"id\";s:27:\"funeral_about_us_f4raq5yudl\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_about_us.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/about-us-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:12:\"abut us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:104;a:17:{s:2:\"id\";s:29:\"funeral_contact_us_nqlzm2zi50\";s:7:\"shareId\";s:7:\"funeral\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_contact_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/contact-us-funeral/\";s:8:\"category\";s:7:\"funeral\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"funeral\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:105;a:17:{s:2:\"id\";s:20:\"insurance_wmgv2v6y6q\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:106;a:17:{s:2:\"id\";s:28:\"insurance_service_j848rhks4p\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:107;a:17:{s:2:\"id\";s:29:\"insurance_about_us_06nxl45xwk\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/about-us-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:108;a:17:{s:2:\"id\";s:31:\"insurance_contact_us_ej1zdfy59o\";s:7:\"shareId\";s:9:\"insurance\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-insurance/\";s:8:\"category\";s:9:\"insurance\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"insurance\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:109;a:17:{s:2:\"id\";s:19:\"law_firm_yhyqa3a493\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:39:\"http://demo.wphash.com/htmega/law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:8:\"law firm\";i:5;s:3:\"law\";i:6;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:110;a:17:{s:2:\"id\";s:27:\"law_firm_service_s4sz8oj7x5\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_service.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/service-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:111;a:17:{s:2:\"id\";s:28:\"law_firm_about_us_ny8w98jawa\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_about_us.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/about-us-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:112;a:17:{s:2:\"id\";s:30:\"law_firm_contact_us_n754ssryq1\";s:7:\"shareId\";s:8:\"law firm\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_contact_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/contact-us-law-firm/\";s:8:\"category\";s:8:\"law firm\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:8:\"law firm\";i:4;s:3:\"law\";i:5;s:4:\"firm\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:113;a:17:{s:2:\"id\";s:25:\"moving_storage_4dc6r8g7h4\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:6:\"moving\";i:5;s:7:\"storage\";i:6;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:114;a:17:{s:2:\"id\";s:33:\"moving_storage_service_9cwu7cde8o\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_service.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/service-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:115;a:17:{s:2:\"id\";s:34:\"moving_storage_about_us_xh466hvgq1\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_about_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/about-us-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:116;a:17:{s:2:\"id\";s:36:\"moving_storage_contact_us_4zho4d9ae3\";s:7:\"shareId\";s:14:\"moving storage\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_contact_us.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/contact-us-moving-storage/\";s:8:\"category\";s:14:\"moving storage\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"moving\";i:4;s:7:\"storage\";i:5;s:14:\"moving storage\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:117;a:17:{s:2:\"id\";s:31:\"print_design_service_rcmw2zj6f2\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/printdesign.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/printdesign.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:5:\"print\";i:5;s:6:\"design\";i:6;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:118;a:17:{s:2:\"id\";s:31:\"print_design_service_848ckzji8i\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_service.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:38:\"http://demo.wphash.com/htmega/service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:7:\"service\";i:1;s:4:\"page\";i:2;s:12:\"service page\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:119;a:17:{s:2:\"id\";s:32:\"print_design_about_us_ukv59ub25v\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_about_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/about-us-print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:120;a:17:{s:2:\"id\";s:34:\"print_design_contact_us_0veko4wb65\";s:7:\"shareId\";s:20:\"print design service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_contact_us.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:62:\"http://demo.wphash.com/htmega/contact-us-print-design-service/\";s:8:\"category\";s:20:\"print design service\";s:4:\"tags\";a:6:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"print\";i:4;s:6:\"design\";i:5;s:20:\"print design service\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:121;a:17:{s:2:\"id\";s:26:\"roofing_service_z54h57u7wv\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofingservice.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofingservice.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:122;a:17:{s:2:\"id\";s:34:\"roofing_service_service_1r4kph9di0\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_service.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/service-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:123;a:17:{s:2:\"id\";s:35:\"roofing_service_about_us_7fkopysio3\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:124;a:17:{s:2:\"id\";s:37:\"roofing_service_contact_us_mijd6iffn2\";s:7:\"shareId\";s:15:\"roofing service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-roofing-service/\";s:8:\"category\";s:15:\"roofing service\";s:4:\"tags\";a:4:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:7:\"roofing\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:125;a:17:{s:2:\"id\";s:21:\"safari_zoo_9w8zcq64kb\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safarizoo.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safarizoo.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:41:\"http://demo.wphash.com/htmega/safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:10:\"safari zoo\";i:5;s:3:\"zoo\";i:6;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:126;a:17:{s:2:\"id\";s:29:\"safari_zoo_service_rw1iw5acba\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_service.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/service-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:7:\"service\";i:1;s:12:\"service page\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:127;a:17:{s:2:\"id\";s:30:\"safari_zoo_about_us_p8sjo573uu\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_about_us.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/about-us-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:8:\"about us\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:128;a:17:{s:2:\"id\";s:32:\"safari_zoo_contact_us_bnzz9pjhi2\";s:7:\"shareId\";s:10:\"safari zoo\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_contact_us.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/contact-us-safari-zoo/\";s:8:\"category\";s:10:\"safari zoo\";s:4:\"tags\";a:6:{i:0;s:10:\"contact us\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:10:\"safari zoo\";i:4;s:3:\"zoo\";i:5;s:6:\"safari\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:129;a:17:{s:2:\"id\";s:22:\"senior_care_8wqrgx78kn\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:11:\"senior care\";i:5;s:6:\"senior\";i:6;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:130;a:17:{s:2:\"id\";s:30:\"senior_care_service_c7xc5vzx3f\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_service.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/contact-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:12:\"Service Page\";i:1;s:4:\"page\";i:2;s:7:\"service\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:131;a:17:{s:2:\"id\";s:31:\"senior_care_about_us_ksuhkf3m7k\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_about_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/about-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:132;a:17:{s:2:\"id\";s:33:\"senior_care_contact_us_2hjxs7y2lc\";s:7:\"shareId\";s:11:\"senior care\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_contact_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/contact-us-senior-care/\";s:8:\"category\";s:11:\"senior care\";s:4:\"tags\";a:6:{i:0;s:15:\"Contact Us Page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:11:\"senior care\";i:4;s:6:\"senior\";i:5;s:4:\"care\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:133;a:17:{s:2:\"id\";s:24:\"steel_factory_ds9by3swts\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steelfactory.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steelfactory.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:5:\"steel\";i:5;s:7:\"factory\";i:6;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:134;a:17:{s:2:\"id\";s:30:\"steel_factory_range_bkkwuyg7b1\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:10:\"Range Page\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_range.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_range.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/our-range-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:10:\"range page\";i:1;s:4:\"page\";i:2;s:5:\"range\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:135;a:17:{s:2:\"id\";s:32:\"steel_factory_service_chv1ay37x4\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_service.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/service-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:136;a:17:{s:2:\"id\";s:33:\"steel_factory_about_us_9bnq7suh9h\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_about_us.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/about-us-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:137;a:17:{s:2:\"id\";s:35:\"steel_factory_contact_us_ijz1j3zt3w\";s:7:\"shareId\";s:13:\"steel factory\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_contact_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/contact-us-steel-factory/\";s:8:\"category\";s:13:\"steel factory\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:5:\"steel\";i:4;s:7:\"factory\";i:5;s:13:\"steel factory\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:138;a:17:{s:2:\"id\";s:20:\"tailoring_r5kn76pgyj\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:139;a:17:{s:2:\"id\";s:28:\"tailoring_service_6ucymgngmi\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:140;a:17:{s:2:\"id\";s:29:\"tailoring_about_us_v98sss0o3s\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/about-us-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:141;a:17:{s:2:\"id\";s:31:\"tailoring_contact_us_xsmn6eeeh0\";s:7:\"shareId\";s:9:\"tailoring\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-tailoring/\";s:8:\"category\";s:9:\"tailoring\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"tailoring\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:142;a:17:{s:2:\"id\";s:20:\"transport_f7dtapk7e2\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:7:\"landing\";i:4;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:143;a:17:{s:2:\"id\";s:28:\"transport_service_nnxpu7qkk3\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_service.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/service-transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:144;a:17:{s:2:\"id\";s:29:\"transport_about_us_6hffpo06x9\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_about_us.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.wphash.com/htmega/transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:145;a:17:{s:2:\"id\";s:31:\"transport_contact_us_fl22j3z9b9\";s:7:\"shareId\";s:9:\"transport\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_contact_us.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/contact-us-transport/\";s:8:\"category\";s:9:\"transport\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:9:\"transport\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:146;a:17:{s:2:\"id\";s:28:\"yacht_boat_rental_8dzm6gzsht\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:4:\"Home\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yachtboatrental.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yachtboatrental.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/yacht-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:8:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:7:\"landing\";i:3;s:4:\"home\";i:4;s:17:\"yacht boat rental\";i:5;s:5:\"yacht\";i:6;s:4:\"boat\";i:7;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:147;a:17:{s:2:\"id\";s:24:\"yacht_service_pg0yu9xx39\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_service.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/service-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:148;a:17:{s:2:\"id\";s:25:\"yacht_about_us_0u6ugwpvob\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_about_us.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/about-us-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:149;a:17:{s:2:\"id\";s:27:\"yacht_contact_us_t7lqdcydyy\";s:7:\"shareId\";s:17:\"yacht boat rental\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_contact_us.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:63:\"http://demo.wphash.com/htmega/contact-us-yacht-and-boat-rental/\";s:8:\"category\";s:17:\"yacht boat rental\";s:4:\"tags\";a:7:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:17:\"yacht boat rental\";i:4;s:5:\"yacht\";i:5;s:4:\"boat\";i:6;s:6:\"rental\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:150;a:17:{s:2:\"id\";s:15:\"yoga_85b2zwxxs3\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:65:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga.png\";s:9:\"fullimage\";s:64:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:35:\"http://demo.wphash.com/htmega/yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:151;a:17:{s:2:\"id\";s:23:\"yoga_classes_15486fnbmu\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:7:\"Classes\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_classes.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_classes.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/classes-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:12:\"Classes Page\";i:1;s:4:\"page\";i:2;s:7:\"classes\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:152;a:17:{s:2:\"id\";s:24:\"yoga_about_us_w1waenl4ng\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_about_us.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/about-us-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:153;a:17:{s:2:\"id\";s:26:\"yoga_contact_us_iywhig6o9t\";s:7:\"shareId\";s:4:\"yoga\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_contact_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/contact-us-yoga/\";s:8:\"category\";s:4:\"yoga\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:4:\"yoga\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:154;a:17:{s:2:\"id\";s:31:\"interior_design_home_v7m5g5qx2c\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_home.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:7:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:6:\"design\";i:5;s:8:\"interior\";i:6;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:155;a:17:{s:2:\"id\";s:34:\"interior_design_service_5z8e4htc9q\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_service.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/service-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:156;a:17:{s:2:\"id\";s:37:\"interior_design_contact_us_5w6622qemx\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_contact_us.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:57:\"http://demo.wphash.com/htmega/contact-us-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:157;a:17:{s:2:\"id\";s:35:\"interior_design_about_us_62jvrrp4b5\";s:7:\"shareId\";s:15:\"interior design\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_about_us.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/about-us-interior-design/\";s:8:\"category\";s:15:\"interior design\";s:4:\"tags\";a:6:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"design\";i:4;s:8:\"interior\";i:5;s:15:\"interior design\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:158;a:17:{s:2:\"id\";s:22:\"bakery_home_py9a5gyauv\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_home.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:37:\"http://demo.wphash.com/htmega/bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:5:{i:0;s:9:\"home page\";i:1;s:12:\"landing page\";i:2;s:4:\"home\";i:3;s:4:\"page\";i:4;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:159;a:17:{s:2:\"id\";s:25:\"bakery_service_t7jpyf6ay5\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_service.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/service-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:160;a:17:{s:2:\"id\";s:26:\"bakery_about_us_t2ujbhvdzd\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_about_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/about-us-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:5:\"about\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:161;a:17:{s:2:\"id\";s:28:\"bakery_contact_us_29amnkf6ua\";s:7:\"shareId\";s:6:\"bakery\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_contact_us.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/contact-us-bakery/\";s:8:\"category\";s:6:\"bakery\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:6:\"bakery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:162;a:17:{s:2:\"id\";s:20:\"pool_home_kxc2e7umyj\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:8:\"Home One\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_home.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_home.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:23:\"home page, landing page\";i:1;s:4:\"page\";i:2;s:4:\"home\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:163;a:17:{s:2:\"id\";s:23:\"pool_service_dzs7253xu6\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:7:\"Service\";s:9:\"thumbnail\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_service.png\";s:9:\"fullimage\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_service.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/service-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:12:\"service page\";i:1;s:7:\"service\";i:2;s:4:\"page\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:164;a:17:{s:2:\"id\";s:24:\"pool_about_us_ch6pve93p4\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:8:\"About Us\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_about_us.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_about_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/about-us-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:13:\"about us page\";i:1;s:4:\"page\";i:2;s:5:\"about\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:165;a:17:{s:2:\"id\";s:26:\"pool_contact_us_9k3en4x3hk\";s:7:\"shareId\";s:12:\"pool service\";s:5:\"title\";s:10:\"Contact Us\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_contact_us.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_contact_us.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/contact-us-pool-service/\";s:8:\"category\";s:12:\"pool service\";s:4:\"tags\";a:4:{i:0;s:15:\"contact us page\";i:1;s:7:\"contact\";i:2;s:4:\"page\";i:3;s:4:\"pool\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:9:\"templates\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:166;a:17:{s:2:\"id\";s:28:\"accordion_style_1_vs4ekp4ga5\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Accordion Style 1 (Icon Left )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:167;a:17:{s:2:\"id\";s:28:\"accordion_style_2_j36hbukkxn\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Accordion Style 1 (Icon Right )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:168;a:17:{s:2:\"id\";s:28:\"accordion_style_3_v82jmzxvsc\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:40:\"Accordion Style 1 ( Elementor Template )\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:169;a:17:{s:2:\"id\";s:28:\"accordion_style_4_ptjm53pu2f\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Accordion Style 1 ( Round Shape)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:170;a:17:{s:2:\"id\";s:28:\"accordion_style_5_5jz6m7vzn7\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Accordion Style 1 (Transparent)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:171;a:17:{s:2:\"id\";s:28:\"accordion_style_6_ky8ay62h8h\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Accordion Style 1 (Box Shadow)\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_6.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:172;a:17:{s:2:\"id\";s:28:\"accordion_style_7_nu9y2d3g32\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:33:\"Accordion Image Gallery - Style 2\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_7.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:173;a:17:{s:2:\"id\";s:28:\"accordion_style_8_4yzrufq88c\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:36:\"Image Accordion (Vertical) - Style 3\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_8.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:174;a:17:{s:2:\"id\";s:28:\"accordion_style_9_uss355wf4w\";s:7:\"shareId\";s:9:\"accordion\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:38:\"Image Accordion (Horizontal) - Style 4\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_9.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-accordion/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"accordion\";i:1;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:175;a:17:{s:2:\"id\";s:35:\"animated_heading_style_1_995df22b5q\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:176;a:17:{s:2:\"id\";s:35:\"animated_heading_style_2_5ae28kvwj9\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:177;a:17:{s:2:\"id\";s:35:\"animated_heading_style_3_cu4bzem6y4\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Animated Heading Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:178;a:17:{s:2:\"id\";s:35:\"animated_heading_style_4_r6nfnt382r\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Animated Heading Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:179;a:17:{s:2:\"id\";s:35:\"animated_heading_style_5_acftd9yg2h\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Animated Heading Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:180;a:17:{s:2:\"id\";s:35:\"animated_heading_style_6_sxvs9v8z93\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Animated Heading Style Six\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_6.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:181;a:17:{s:2:\"id\";s:35:\"animated_heading_style_7_zda7vf847d\";s:7:\"shareId\";s:16:\"animated-heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Animated Heading Style Seven\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_7.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-animated-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:16:\"animated heading\";i:1;s:8:\"animated\";i:2;s:7:\"animate\";i:3;s:7:\"heading\";i:4;s:5:\"block\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:182;a:17:{s:2:\"id\";s:25:\"banner_style_1_aa4jch7aru\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Banner Default Style\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:183;a:17:{s:2:\"id\";s:25:\"banner_style_2_aqf48sdwqk\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Banner Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:184;a:17:{s:2:\"id\";s:25:\"banner_style_3_6t2ndkqsgr\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Banner Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:185;a:17:{s:2:\"id\";s:25:\"banner_style_4_2h6ymfs6gg\";s:7:\"shareId\";s:6:\"banner\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Banner Style Four\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_4.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-banner/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:5:\"block\";i:2;s:10:\"add banner\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:186;a:17:{s:2:\"id\";s:29:\"blockquote_style_1_5vw7jxgb8g\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Blockquote Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:187;a:17:{s:2:\"id\";s:29:\"blockquote_style_2_372ey9w9kx\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Blockquote Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:188;a:17:{s:2:\"id\";s:29:\"blockquote_style_3_g2g4hnnkvj\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Blockquote Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:189;a:17:{s:2:\"id\";s:29:\"blockquote_style_4_7pqcnsx899\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Blockquote Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:190;a:17:{s:2:\"id\";s:29:\"blockquote_style_5_28824rt9r8\";s:7:\"shareId\";s:10:\"blockquote\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Blockquote Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-blockquote/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"blockquote\";i:1;s:6:\"blocks\";i:2;s:5:\"quote\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:191;a:17:{s:2:\"id\";s:24:\"brand_style_1_vv9785u49z\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:192;a:17:{s:2:\"id\";s:24:\"brand_style_2_8nx6eueqjp\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:193;a:17:{s:2:\"id\";s:24:\"brand_style_3_23x7k57z26\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Brands Style Three\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_3.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:194;a:17:{s:2:\"id\";s:24:\"brand_style_4_ndk8gzmdgj\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Brands Style Four\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_4.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:195;a:17:{s:2:\"id\";s:24:\"brand_style_5_36e4fzh9c2\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Brands Style Five\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_5.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:196;a:17:{s:2:\"id\";s:24:\"brand_style_6_626y7q6kqx\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Brands Style Six\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_6.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:197;a:17:{s:2:\"id\";s:24:\"brand_style_7_7ewj9uk8eh\";s:7:\"shareId\";s:6:\"brands\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Brands Style Seven\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_7.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-brand/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:6:\"brands\";i:1;s:6:\"blocks\";i:2;s:10:\"brand logo\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:198;a:17:{s:2:\"id\";s:33:\"business_hours_style_1_j7v23s3qpz\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Business Hours Style One\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:199;a:17:{s:2:\"id\";s:33:\"business_hours_style_2_56hyzw85z3\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Business Hours Style Two\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_2.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:200;a:17:{s:2:\"id\";s:33:\"business_hours_style_3_hn6qjpw2vh\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Business Hours Style Three\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_3.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:201;a:17:{s:2:\"id\";s:33:\"business_hours_style_4_ysem3rsb3v\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Business Hours Style Four\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_4.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:202;a:17:{s:2:\"id\";s:33:\"business_hours_style_5_sk3hh48htr\";s:7:\"shareId\";s:14:\"business-hours\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Business Hours Style Five\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_5.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-business-hours/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"business hours\";i:1;s:5:\"hours\";i:2;s:8:\"business\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:203;a:17:{s:2:\"id\";s:25:\"button_style_1_jt3sxec3uq\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:204;a:17:{s:2:\"id\";s:25:\"button_style_2_a338pkkckx\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:205;a:17:{s:2:\"id\";s:25:\"button_style_3_nmxv8x2drn\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:206;a:17:{s:2:\"id\";s:25:\"button_style_4_df7ke8j7mc\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Button Style Four\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_4.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:207;a:17:{s:2:\"id\";s:25:\"button_style_5_vbeh4cqy4k\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Button Style Five\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_5.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:208;a:17:{s:2:\"id\";s:25:\"button_style_6_z5b2qdmtnm\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Button Style Six\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_6.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:209;a:17:{s:2:\"id\";s:25:\"button_style_7_3zxvj8va7x\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Seven\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_7.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:210;a:17:{s:2:\"id\";s:25:\"button_style_8_jp64g9ynaj\";s:7:\"shareId\";s:6:\"button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Button Style Eight\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_8.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"button\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:211;a:17:{s:2:\"id\";s:33:\"call_to_action_style_1_45694bbpgc\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style One\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:212;a:17:{s:2:\"id\";s:33:\"call_to_action_style_2_qwk29ma2be\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style Two\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_2.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:213;a:17:{s:2:\"id\";s:33:\"call_to_action_style_3_mf23n79yep\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Call to Action Style Three\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_3.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:214;a:17:{s:2:\"id\";s:33:\"call_to_action_style_4_xg7bqb8v5v\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Call to Action Style Four\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_4.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:215;a:17:{s:2:\"id\";s:33:\"call_to_action_style_5_4k8aadb6au\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Call to Action Style Five\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_5.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:216;a:17:{s:2:\"id\";s:33:\"call_to_action_style_6_gufnbk8m8g\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Call to Action Style Six\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_6.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:217;a:17:{s:2:\"id\";s:33:\"call_to_action_style_7_mta36drr8w\";s:7:\"shareId\";s:14:\"call-to-action\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Call to Action Style Seven\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_7.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-call-to-action/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:14:\"call to action\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:218;a:17:{s:2:\"id\";s:31:\"contact_form_style_1_95pk6bay5u\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Contact form Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:219;a:17:{s:2:\"id\";s:31:\"contact_form_style_2_j6ny3jwfhe\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Contact form Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:220;a:17:{s:2:\"id\";s:31:\"contact_form_style_3_f7r89vj3tm\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Contact form Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:221;a:17:{s:2:\"id\";s:31:\"contact_form_style_4_cxevj7xz7w\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Contact form Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:222;a:17:{s:2:\"id\";s:31:\"contact_form_style_5_97p9jy4nsm\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Contact form Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:223;a:17:{s:2:\"id\";s:31:\"contact_form_style_6_yt4utqjcn4\";s:7:\"shareId\";s:6:\"blocks\";s:7:\"tmpType\";s:12:\"contact-form\";s:5:\"title\";s:22:\"Contact form Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:224;a:17:{s:2:\"id\";s:31:\"contact_form_style_7_55jpk6bxyw\";s:7:\"shareId\";s:12:\"contact-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Contact form Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-contact-form/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"contact form\";i:1;s:7:\"contact\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:225;a:17:{s:2:\"id\";s:28:\"countdown_style_1_m7xeenwza8\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:226;a:17:{s:2:\"id\";s:28:\"countdown_style_2_r3shkhbt8u\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:227;a:17:{s:2:\"id\";s:28:\"countdown_style_3_qjnaj8wk6k\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Countdown Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:228;a:17:{s:2:\"id\";s:28:\"countdown_style_4_3yn5emh45f\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Countdown Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:229;a:17:{s:2:\"id\";s:28:\"countdown_style_5_9ycpcp39vw\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Countdown Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:230;a:17:{s:2:\"id\";s:28:\"countdown_style_6_5c42amhafe\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Countdown Style Six\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_6.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:231;a:17:{s:2:\"id\";s:28:\"countdown_style_7_cw4zh6c7wp\";s:7:\"shareId\";s:9:\"countdown\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Countdown Style Seven\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_7.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-countdown/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"countdown\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:232;a:17:{s:2:\"id\";s:26:\"counter_style_1_qzzjt84xvf\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:233;a:17:{s:2:\"id\";s:26:\"counter_style_2_uvae6yfg5v\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:234;a:17:{s:2:\"id\";s:26:\"counter_style_3_r2ga4yyks8\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Counter Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:235;a:17:{s:2:\"id\";s:26:\"counter_style_4_btjkaf9v98\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Counter Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:236;a:17:{s:2:\"id\";s:26:\"counter_style_5_fzjft4x8xt\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Counter Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:237;a:17:{s:2:\"id\";s:26:\"counter_style_6_rms8uunp9d\";s:7:\"shareId\";s:7:\"counter\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Counter Style Six\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_6.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-counter/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"counter\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:238;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_1_s5mekpkg4u\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:239;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_2_4qz663fbbe\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:240;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_3_rn5c8sbp6v\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Custom Carousel Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:241;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_4_v3xvn62wue\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Custom Carousel Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:242;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_5_6jkx67bjw6\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Custom Carousel Style Five\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_5.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:243;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_6_2ccnv5x8bg\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Custom Carousel Style Six\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_6.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:244;a:17:{s:2:\"id\";s:34:\"custom_carousel_style_7_9kxmdc5hbr\";s:7:\"shareId\";s:15:\"custom-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Custom Carousel Style Seven\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_7.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-custom-carousel/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"custom carousel\";i:1;s:6:\"custom\";i:2;s:8:\"carousel\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:245;a:17:{s:2:\"id\";s:29:\"data_table_style_1_8xw8gngqu9\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Data Table Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:246;a:17:{s:2:\"id\";s:29:\"data_table_style_2_4e3uk3db6p\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Data Table Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:247;a:17:{s:2:\"id\";s:29:\"data_table_style_3_2z4gpq49z3\";s:7:\"shareId\";s:10:\"data-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Data Table Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-data-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"data table\";i:1;s:4:\"data\";i:2;s:5:\"table\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:248;a:17:{s:2:\"id\";s:32:\"double_button_style_1_g6c2535mts\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Double Button Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:249;a:17:{s:2:\"id\";s:32:\"double_button_style_2_egcpc4h5ck\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Double Button Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:250;a:17:{s:2:\"id\";s:32:\"double_button_style_3_3dkn67v2vd\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Double Button Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:251;a:17:{s:2:\"id\";s:32:\"double_button_style_4_p23c923sg8\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Double Button Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:252;a:17:{s:2:\"id\";s:32:\"double_button_style_5_8n94g79vy3\";s:7:\"shareId\";s:13:\"double-button\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Double Button Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/eelement-double-button/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:13:\"double button\";i:1;s:6:\"button\";i:2;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:253;a:17:{s:2:\"id\";s:27:\"dropcaps_style_1_23sm4q233b\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Dropcaps Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:254;a:17:{s:2:\"id\";s:27:\"dropcaps_style_2_dkj8yg6wme\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Dropcaps Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:255;a:17:{s:2:\"id\";s:27:\"dropcaps_style_3_ftm3m6hvms\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Dropcaps Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:256;a:17:{s:2:\"id\";s:27:\"dropcaps_style_4_9g7ayhz6zf\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Dropcaps Style Four\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_4.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:257;a:17:{s:2:\"id\";s:27:\"dropcaps_style_5_2yuqtnb35z\";s:7:\"shareId\";s:8:\"dropcaps\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Dropcaps Style Five\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_5.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-dropcaps/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"dropcaps\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:258;a:17:{s:2:\"id\";s:22:\"faq_style_1_zpteef35wq\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Faq Style One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_1.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:259;a:17:{s:2:\"id\";s:22:\"faq_style_2_6b5ns3uphs\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Faq Style Two\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_2.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:260;a:17:{s:2:\"id\";s:22:\"faq_style_3_b7pkc8a8q8\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Faq Style Three\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_3.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:261;a:17:{s:2:\"id\";s:22:\"faq_style_4_y424ypb8te\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Faq Style Four\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_4.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:262;a:17:{s:2:\"id\";s:22:\"faq_style_5_u7yeamvc9c\";s:7:\"shareId\";s:3:\"faq\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Faq Style Five\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_5.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-faq/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"faq\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:263;a:17:{s:2:\"id\";s:26:\"flipbox_style_1_wm249sy3nn\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Flipbox Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:264;a:17:{s:2:\"id\";s:26:\"flipbox_style_2_cf69jdjgrr\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Flipbox Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:265;a:17:{s:2:\"id\";s:26:\"flipbox_style_3_2ycw8z79kr\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Flipbox Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:266;a:17:{s:2:\"id\";s:26:\"flipbox_style_4_rdt5rcv9v3\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Flipbox Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:267;a:17:{s:2:\"id\";s:26:\"flipbox_style_5_8923jxwf7r\";s:7:\"shareId\";s:7:\"flipbox\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Flipbox Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-flipbox/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"flipbox\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:268;a:17:{s:2:\"id\";s:29:\"google_map_style_1_rteuabs4ks\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:269;a:17:{s:2:\"id\";s:29:\"google_map_style_2_7s9pzx9bfc\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:270;a:17:{s:2:\"id\";s:29:\"google_map_style_3_bdvx4fgbwj\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Google Map Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:271;a:17:{s:2:\"id\";s:29:\"google_map_style_4_nmnynxc699\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Google Map Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:272;a:17:{s:2:\"id\";s:29:\"google_map_style_5_bjvn665pkq\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Google Map Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:273;a:17:{s:2:\"id\";s:29:\"google_map_style_6_yzkzgbj9z9\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Google Map Style Six\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_6.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:274;a:17:{s:2:\"id\";s:29:\"google_map_style_7_ccxe5rye7e\";s:7:\"shareId\";s:10:\"google-map\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Google Map Style Seven\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_7.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-google-map/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"google map\";i:1;s:3:\"map\";i:2;s:6:\"google\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:275;a:17:{s:2:\"id\";s:26:\"heading_style_1_pjxp9brc6p\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:276;a:17:{s:2:\"id\";s:26:\"heading_style_2_y5zmtwckwv\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:277;a:17:{s:2:\"id\";s:26:\"heading_style_3_7bgzxjhttq\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Heading Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:278;a:17:{s:2:\"id\";s:26:\"heading_style_4_b5edv2vxdf\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Heading Style Four\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_4.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:279;a:17:{s:2:\"id\";s:26:\"heading_style_5_9d756ybn23\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Heading Style Five\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_5.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:280;a:17:{s:2:\"id\";s:26:\"heading_style_6_9amhaas52f\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Heading Style Six\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_6.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:281;a:17:{s:2:\"id\";s:26:\"heading_style_7_y4xtazr3bt\";s:7:\"shareId\";s:7:\"heading\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Heading Style Seven\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_7.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-heading/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"heading\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:282;a:17:{s:2:\"id\";s:35:\"image_comparison_style_1_acjgc7x3zy\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Image Comparison Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:283;a:17:{s:2:\"id\";s:35:\"image_comparison_style_2_zf742rjueb\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Image Comparison Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:284;a:17:{s:2:\"id\";s:35:\"image_comparison_style_3_n3fx8zdmtk\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Image Comparison Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:285;a:17:{s:2:\"id\";s:35:\"image_comparison_style_4_v8cjfqmgww\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Comparison Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:286;a:17:{s:2:\"id\";s:35:\"image_comparison_style_5_u7c2q874aq\";s:7:\"shareId\";s:16:\"image-comparison\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Comparison Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-image-comparison/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"image comparison\";i:1;s:5:\"image\";i:2;s:10:\"comparison\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:287;a:17:{s:2:\"id\";s:32:\"image_justify_style_1_th6ystnx5s\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Justify Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:288;a:17:{s:2:\"id\";s:32:\"image_justify_style_2_z5d4c75p64\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Justify Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:289;a:17:{s:2:\"id\";s:32:\"image_justify_style_3_7634dhb6jv\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Justify Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:290;a:17:{s:2:\"id\";s:32:\"image_justify_style_4_35t5j9az3x\";s:7:\"shareId\";s:13:\"image-justify\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Justify Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-justify/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image justify\";i:1;s:5:\"image\";i:2;s:7:\"justify\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:291;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_1_8xysq7upx3\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Magnifier Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:292;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_2_f7tx5ras45\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Magnifier Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:293;a:17:{s:2:\"id\";s:34:\"image_magnifier_style_3_d82bfytbs6\";s:7:\"shareId\";s:15:\"image-magnifier\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Image Magnifier Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-image-magnifier/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:15:\"image magnifier\";i:1;s:5:\"image\";i:2;s:9:\"magnifier\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:294;a:17:{s:2:\"id\";s:31:\"image_marker_style_1_nvv326d37y\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Image Marker Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:295;a:17:{s:2:\"id\";s:31:\"image_marker_style_2_6w2b9j6ngh\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Image Marker Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:296;a:17:{s:2:\"id\";s:31:\"image_marker_style_3_y8cr2xuhhk\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Marker Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:297;a:17:{s:2:\"id\";s:31:\"image_marker_style_4_ae2fpg8tap\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Marker Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:298;a:17:{s:2:\"id\";s:31:\"image_marker_style_5_uu4rtytjfu\";s:7:\"shareId\";s:12:\"image-marker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Marker Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-image-marker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"image marker\";i:1;s:5:\"image\";i:2;s:6:\"marker\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:299;a:17:{s:2:\"id\";s:32:\"image_masonry_style_1_vkud9x72gu\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Masonry Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:300;a:17:{s:2:\"id\";s:32:\"image_masonry_style_2_a75x8zpy3z\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Image Masonry Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:301;a:17:{s:2:\"id\";s:32:\"image_masonry_style_3_phkzfn6gc6\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Image Masonry Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:302;a:17:{s:2:\"id\";s:32:\"image_masonry_style_4_zm75f65fz6\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Masonry Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:303;a:17:{s:2:\"id\";s:32:\"image_masonry_style_5_8gvt86up47\";s:7:\"shareId\";s:13:\"image-masonry\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Image Masonry Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-image-masonry/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"image masonry\";i:1;s:5:\"image\";i:2;s:7:\"masonry\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:304;a:17:{s:2:\"id\";s:30:\"inline_menu_style_1_7vqm3ezesn\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:305;a:17:{s:2:\"id\";s:30:\"inline_menu_style_2_hd65rh6tny\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:306;a:17:{s:2:\"id\";s:30:\"inline_menu_style_3_y74n96n9em\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Inline Menu Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:307;a:17:{s:2:\"id\";s:30:\"inline_menu_style_4_nuf489b7f3\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Inline Menu Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:308;a:17:{s:2:\"id\";s:30:\"inline_menu_style_5_28h24du9v5\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Inline Menu Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:309;a:17:{s:2:\"id\";s:30:\"inline_menu_style_6_6ejfcujvju\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Inline Menu Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:310;a:17:{s:2:\"id\";s:30:\"inline_menu_style_7_4rz9u9yjcm\";s:7:\"shareId\";s:11:\"inline-menu\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Inline Menu Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-inline-menu/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"inline menu\";i:1;s:4:\"menu\";i:2;s:6:\"inline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:311;a:17:{s:2:\"id\";s:33:\"instagram_feed_style_1_be97ahcn6t\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:38:\"Instagram Feed Style One (Third party)\";s:9:\"thumbnail\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_feed_style_1.png\";s:9:\"fullimage\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_feed_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/element-instagram-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:14:\"instagram feed\";i:1;s:9:\"instagram\";i:2;s:4:\"feed\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:312;a:17:{s:2:\"id\";s:28:\"instagram_style_1_bph5r6g9cy\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Instagram Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:313;a:17:{s:2:\"id\";s:28:\"instagram_style_2_n8ch5bjyuu\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Instagram Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:314;a:17:{s:2:\"id\";s:28:\"instagram_style_3_s5jq39qv3f\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Instagram Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:315;a:17:{s:2:\"id\";s:28:\"instagram_style_4_8dja274mys\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Instagram Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:316;a:17:{s:2:\"id\";s:28:\"instagram_style_5_32v6w8vad7\";s:7:\"shareId\";s:9:\"instagram\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Instagram Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-instagram/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"instagram\";i:1;s:6:\"blocks\";i:2;s:14:\"instagram feed\";i:3;s:4:\"feed\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:317;a:17:{s:2:\"id\";s:28:\"light_box_style_1_84fgpc5jmq\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Light Box Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:318;a:17:{s:2:\"id\";s:28:\"light_box_style_2_st529zk5ff\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Light Box Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:319;a:17:{s:2:\"id\";s:28:\"light_box_style_3_aahbpeyx35\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Light Box Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:320;a:17:{s:2:\"id\";s:28:\"light_box_style_4_r7jx3p3ae6\";s:7:\"shareId\";s:9:\"light-box\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Light Box Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-light-box/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"light box\";i:1;s:5:\"light\";i:2;s:3:\"box\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:321;a:17:{s:2:\"id\";s:24:\"modal_style_1_gwntq25e9q\";s:7:\"shareId\";s:5:\"modal\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Modal Style One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-modal/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:5:\"modal\";i:1;s:6:\"blocks\";i:2;s:5:\"popup\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:322;a:17:{s:2:\"id\";s:24:\"modal_style_2_9vphqmdu4m\";s:7:\"shareId\";s:5:\"modal\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Modal Style Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:44:\"http://demo.wphash.com/htmega/element-modal/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:5:\"modal\";i:1;s:6:\"blocks\";i:2;s:5:\"popup\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:323;a:17:{s:2:\"id\";s:30:\"news_ticker_style_1_39gvp9n89m\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:324;a:17:{s:2:\"id\";s:30:\"news_ticker_style_2_krvt4cu3a7\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:325;a:17:{s:2:\"id\";s:30:\"news_ticker_style_3_jg24rjcrwk\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"News Ticker Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:326;a:17:{s:2:\"id\";s:30:\"news_ticker_style_4_u2rw9ud82t\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"News Ticker Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:327;a:17:{s:2:\"id\";s:30:\"news_ticker_style_5_8b2aemvkcp\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"News Ticker Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:328;a:17:{s:2:\"id\";s:30:\"news_ticker_style_6_vpgwffs3bu\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"News Ticker Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:329;a:17:{s:2:\"id\";s:30:\"news_ticker_style_7_d4adcdennq\";s:7:\"shareId\";s:11:\"news-ticker\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"News Ticker Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-news-ticker/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"news ticker\";i:1;s:6:\"ticker\";i:2;s:4:\"news\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:330;a:17:{s:2:\"id\";s:31:\"notification_style_1_unsfh9zvya\";s:7:\"shareId\";s:12:\"notification\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Notification Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-notification/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:331;a:17:{s:2:\"id\";s:31:\"notification_style_2_2zqq88xadp\";s:7:\"shareId\";s:12:\"notification\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Notification Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-notification/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:332;a:17:{s:2:\"id\";s:28:\"offcanvas_style_1_p66amk49fm\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Off canvas Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:333;a:17:{s:2:\"id\";s:28:\"offcanvas_style_2_wrqjcc22vc\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Off canvas Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:334;a:17:{s:2:\"id\";s:28:\"offcanvas_style_3_g8xf9k9ep2\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Off canvas Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:335;a:17:{s:2:\"id\";s:28:\"offcanvas_style_4_g5zpf2kt9e\";s:7:\"shareId\";s:10:\"off-canvas\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Off canvas Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-off-canvas/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:10:\"off canvas\";i:1;s:6:\"blocks\";i:2;s:6:\"canvas\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:336;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_1_fz9x4vw87f\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Page Not Found Content Style One\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_1.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:337;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_2_9bjghx4xne\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Page Not Found Content Style Two\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_2.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:338;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_3_azsrtcp7tw\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:34:\"Page Not Found Content Style Three\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_3.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:339;a:17:{s:2:\"id\";s:41:\"page_not_found_content_styel_4_cf8q7swvz4\";s:7:\"shareId\";s:3:\"404\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:33:\"Page Not Found Content Style Four\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_4.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.wphash.com/htmega/element-page-not-found-content/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:7:{i:0;s:18:\"404 page not found\";i:1;s:3:\"404\";i:2;s:9:\"not found\";i:3;s:14:\"page not found\";i:4;s:5:\"error\";i:5;s:9:\"404 error\";i:6;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:340;a:17:{s:2:\"id\";s:31:\"panel_slider_style_1_kvg6tc8h5u\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Panel Slider Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:341;a:17:{s:2:\"id\";s:31:\"panel_slider_style_2_3qr55akzkw\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Panel Slider Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:342;a:17:{s:2:\"id\";s:31:\"panel_slider_style_3_9dvdvpja8g\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Panel Slider Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:343;a:17:{s:2:\"id\";s:31:\"panel_slider_style_4_krpx53ws9w\";s:7:\"shareId\";s:12:\"panel-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Panel Slider Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-panel-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"panel slider\";i:1;s:5:\"panel\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:344;a:17:{s:2:\"id\";s:26:\"popover_style_1_rcevf8afja\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Popover Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:345;a:17:{s:2:\"id\";s:26:\"popover_style_2_mcwxczea3z\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Popover Style Two\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_2.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:346;a:17:{s:2:\"id\";s:26:\"popover_style_3_jr6hfc8qms\";s:7:\"shareId\";s:7:\"popover\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Popover Style Three\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_3.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-popover/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"popover\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:347;a:17:{s:2:\"id\";s:29:\"pos_slider_style_1_ckx5h84693\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Slider Style One\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_1.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:348;a:17:{s:2:\"id\";s:29:\"pos_slider_style_2_ca99erj8bn\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Slider Style Two\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_2.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:349;a:17:{s:2:\"id\";s:29:\"pos_slider_style_3_p2hkgym5wq\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Slider Style Three\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_3.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:350;a:17:{s:2:\"id\";s:29:\"pos_slider_style_4_4c5c85c8vx\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Post Slider Style Four\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_4.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:351;a:17:{s:2:\"id\";s:29:\"pos_slider_style_5_7kve7ka5u7\";s:7:\"shareId\";s:11:\"post-slider\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Post Slider Style Five\";s:9:\"thumbnail\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_5.png\";s:9:\"fullimage\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-post-slider/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"post slider\";i:1;s:4:\"post\";i:2;s:6:\"slider\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:352;a:17:{s:2:\"id\";s:31:\"post_carosul_style_1_3btcbkqn2g\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Carousel Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:353;a:17:{s:2:\"id\";s:31:\"post_carosul_style_2_fc3nfa3g89\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Carousel Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:354;a:17:{s:2:\"id\";s:31:\"post_carosul_style_3_5f5y8whky4\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Post Carousel Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:355;a:17:{s:2:\"id\";s:31:\"post_carosul_style_4_gn52cwg8c8\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Carousel Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:356;a:17:{s:2:\"id\";s:31:\"post_carosul_style_5_98tagjapff\";s:7:\"shareId\";s:13:\"post-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Carousel Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:43:\"http://demo.wphash.com/htmega/post-carosul/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"post carousel\";i:1;s:4:\"post\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:357;a:17:{s:2:\"id\";s:28:\"post_grid_style_1_p3smsxy8sw\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Post Grid Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:358;a:17:{s:2:\"id\";s:28:\"post_grid_style_2_p7a8ykg5m9\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Post Grid Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:359;a:17:{s:2:\"id\";s:28:\"post_grid_style_3_a4yxfcs583\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Post Grid Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:360;a:17:{s:2:\"id\";s:28:\"post_grid_style_4_nhvq8qzt7z\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Post Grid Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:361;a:17:{s:2:\"id\";s:28:\"post_grid_style_5_2p2jjup7fz\";s:7:\"shareId\";s:9:\"post-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Post Grid Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-post-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"post grid\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:362;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_1_4bxg3uy2xc\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Grid Tab Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:363;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_2_w6ahtmd56p\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Post Grid Tab Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:364;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_3_qprpa27b7m\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Post Grid Tab Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:365;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_4_g6we2qkd78\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Grid Tab Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:366;a:17:{s:2:\"id\";s:32:\"post_grid_tab_style_5_36gt7ekdzt\";s:7:\"shareId\";s:13:\"post-grid-tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Post Grid Tab Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-post-grid-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"post grid tab\";i:1;s:4:\"post\";i:2;s:4:\"grid\";i:3;s:3:\"tab\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:367;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_1_xj2k6snj4u\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Pricing List View Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:368;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_2_r7zzqx3aak\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Pricing List View Style Two\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_2.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:369;a:17:{s:2:\"id\";s:36:\"pricing_list_view_style_3_wrsvkj6hex\";s:7:\"shareId\";s:12:\"pricing-list\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Pricing List View Style Three\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_3.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-pricing-list-view/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:17:\"pricing list view\";i:1;s:7:\"pricing\";i:2;s:4:\"list\";i:3;s:4:\"view\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:370;a:17:{s:2:\"id\";s:32:\"pricing_table_style_1_jvnhcz4m28\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:371;a:17:{s:2:\"id\";s:32:\"pricing_table_style_2_urz4e786zd\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:372;a:17:{s:2:\"id\";s:32:\"pricing_table_style_3_d27f3m4jqr\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Pricing Table Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:373;a:17:{s:2:\"id\";s:32:\"pricing_table_style_4_pr45ayj6td\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Pricing Table Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:374;a:17:{s:2:\"id\";s:32:\"pricing_table_style_5_pbrqk5pc9j\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Pricing Table Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:375;a:17:{s:2:\"id\";s:32:\"pricing_table_style_6_racv3s8ug4\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Pricing Table Style Six\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_6.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:376;a:17:{s:2:\"id\";s:32:\"pricing_table_style_7_zgkgyjs7u9\";s:7:\"shareId\";s:13:\"pricing-table\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Pricing Table Style Seven\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_7.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-pricing-table/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"pricing table\";i:1;s:7:\"pricing\";i:2;s:5:\"table\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:377;a:17:{s:2:\"id\";s:31:\"progress_bar_style_1_udym6u7gbw\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:378;a:17:{s:2:\"id\";s:31:\"progress_bar_style_2_544k7u76m7\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:379;a:17:{s:2:\"id\";s:31:\"progress_bar_style_3_k68z7wneyx\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:380;a:17:{s:2:\"id\";s:31:\"progress_bar_style_4_v9j8qj6269\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:381;a:17:{s:2:\"id\";s:31:\"progress_bar_style_5_e8fuw2bg2y\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:382;a:17:{s:2:\"id\";s:31:\"progress_bar_style_6_bevpmvgv84\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:383;a:17:{s:2:\"id\";s:31:\"progress_bar_style_7_fy9jk4qcgk\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:384;a:17:{s:2:\"id\";s:31:\"progress_bar_style_8_4v6vs4x546\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Progress Bar Style Eight\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_8.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:385;a:17:{s:2:\"id\";s:31:\"progress_bar_style_9_u79rdqrxa2\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Progress Bar Style Nine\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_9.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:386;a:17:{s:2:\"id\";s:32:\"progress_bar_style_10_jt2j93hbts\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Progress Bar Style Ten\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_10.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:387;a:17:{s:2:\"id\";s:32:\"progress_bar_style_11_s7uwm4dd7k\";s:7:\"shareId\";s:12:\"progress-bar\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"Progress Bar Style Eleven\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_11.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_11.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-progress-bar/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"progress bar\";i:1;s:8:\"progress\";i:2;s:3:\"bar\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:388;a:17:{s:2:\"id\";s:31:\"scroll_image_style_1_5t7e6xf4fh\";s:7:\"shareId\";s:12:\"scroll-image\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Scroll Image Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-scroll-image/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:12:\"scroll image\";i:1;s:5:\"image\";i:2;s:6:\"scroll\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:389;a:17:{s:2:\"id\";s:31:\"scroll_image_style_2_6fpnvhdjdx\";s:7:\"shareId\";s:12:\"scroll-image\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Scroll Image Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-scroll-image/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:12:\"scroll image\";i:1;s:5:\"image\";i:2;s:6:\"scroll\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:390;a:17:{s:2:\"id\";s:36:\"scroll_navigation_style_1_t526tv3ryx\";s:7:\"shareId\";s:17:\"scroll-navigation\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Scroll Navigation Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_navigation_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_navigation_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-scroll-navigation/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:17:\"scroll navigation\";i:1;s:6:\"scroll\";i:2;s:10:\"navigation\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:391;a:17:{s:2:\"id\";s:30:\"search_form_style_1_9an6akfpk8\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Search Form Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:392;a:17:{s:2:\"id\";s:30:\"search_form_style_2_tszye446bn\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Search Form Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:393;a:17:{s:2:\"id\";s:30:\"search_form_style_3_4fjx95bkd3\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Search Form Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:394;a:17:{s:2:\"id\";s:30:\"search_form_style_4_wx3ab4ggwz\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Search Form Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:395;a:17:{s:2:\"id\";s:30:\"search_form_style_5_hmdy654wds\";s:7:\"shareId\";s:11:\"search-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Search Form Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/elementor-search/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"search form\";i:1;s:6:\"search\";i:2;s:4:\"form\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:396;a:17:{s:2:\"id\";s:27:\"services_style_1_bwvhy2c84g\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:397;a:17:{s:2:\"id\";s:27:\"services_style_2_ag962rmqxr\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:398;a:17:{s:2:\"id\";s:27:\"services_style_3_g47g88ey6n\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Services Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:399;a:17:{s:2:\"id\";s:27:\"services_style_4_ss6adkhx52\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Services Style Four\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_4.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:400;a:17:{s:2:\"id\";s:27:\"services_style_5_wh8b5vv54n\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Services Style Five\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_5.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:401;a:17:{s:2:\"id\";s:27:\"services_style_6_ruh2czd6nh\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Services Style Six\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_6.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:402;a:17:{s:2:\"id\";s:27:\"services_style_7_9uyap4n7k8\";s:7:\"shareId\";s:8:\"services\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Services Style Seven\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_7.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-services/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:403;a:17:{s:2:\"id\";s:30:\"single_post_style_1_v5bfzs2tfn\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Single Post Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:404;a:17:{s:2:\"id\";s:30:\"single_post_style_2_xytnafdr66\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Single Post Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:405;a:17:{s:2:\"id\";s:30:\"single_post_style_3_p285gdqv8p\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Single Post Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:406;a:17:{s:2:\"id\";s:30:\"single_post_style_4_mtaxq3kgnx\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Single Post Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:407;a:17:{s:2:\"id\";s:30:\"single_post_style_5_kd7n4zyatw\";s:7:\"shareId\";s:11:\"single-post\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Single Post Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-single-post/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"single post\";i:1;s:6:\"single\";i:2;s:4:\"post\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:408;a:17:{s:2:\"id\";s:31:\"social_share_style_1_3uzr333n7p\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:409;a:17:{s:2:\"id\";s:31:\"social_share_style_2_fs942wsyab\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:410;a:17:{s:2:\"id\";s:31:\"social_share_style_3_5c9aufg322\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:411;a:17:{s:2:\"id\";s:31:\"social_share_style_4_6g43sh6dzy\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:412;a:17:{s:2:\"id\";s:31:\"social_share_style_5_bmx7xv9673\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:413;a:17:{s:2:\"id\";s:31:\"social_share_style_6_u456uy4qxp\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Social Share Style Six\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_6.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:414;a:17:{s:2:\"id\";s:31:\"social_share_style_7_ynanq33uec\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Seven\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_7.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:415;a:17:{s:2:\"id\";s:31:\"social_share_style_8_vb6shd4uwr\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Social Share Style Eight\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_8.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:416;a:17:{s:2:\"id\";s:31:\"social_share_style_9_wxe528kusc\";s:7:\"shareId\";s:12:\"social-share\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Social Share Style Nine\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_9.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-social-shere/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"social share\";i:1;s:6:\"social\";i:2;s:5:\"share\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:417;a:17:{s:2:\"id\";s:28:\"subscribe_style_1_8un95pye7f\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Subscribe Style One\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_1.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:418;a:17:{s:2:\"id\";s:28:\"subscribe_style_2_78zexgwe69\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:19:\"Subscribe Style Two\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_2.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:419;a:17:{s:2:\"id\";s:28:\"subscribe_style_3_u76sbj65yr\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Subscribe Style Three\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_3.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:420;a:17:{s:2:\"id\";s:28:\"subscribe_style_4_erxfmyzk7f\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Subscribe Style Four\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_4.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:421;a:17:{s:2:\"id\";s:28:\"subscribe_style_5_hv234wgscs\";s:7:\"shareId\";s:9:\"subscribe\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Subscribe Style Five\";s:9:\"thumbnail\";s:78:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_5.png\";s:9:\"fullimage\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:48:\"http://demo.wphash.com/htmega/element-subscribe/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:9:\"subscribe\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:422;a:17:{s:2:\"id\";s:27:\"switcher_style_1_c9h3ctrxaq\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Switcher Style One\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_1.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:423;a:17:{s:2:\"id\";s:27:\"switcher_style_2_dgc88nqwfz\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Switcher Style Two\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_2.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:424;a:17:{s:2:\"id\";s:27:\"switcher_style_3_q6kxgtus44\";s:7:\"shareId\";s:8:\"switcher\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:20:\"Switcher Style Three\";s:9:\"thumbnail\";s:77:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_3.png\";s:9:\"fullimage\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:47:\"http://demo.wphash.com/htmega/element-switcher/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:8:\"switcher\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:425;a:17:{s:2:\"id\";s:22:\"tab_style_1_mekdzf8w5x\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Tab Style One\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_1.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:426;a:17:{s:2:\"id\";s:22:\"tab_style_2_4z6kr95dr7\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:13:\"Tab Style Two\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_2.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:427;a:17:{s:2:\"id\";s:22:\"tab_style_3_d53z3kvqrh\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:15:\"Tab Style Three\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_3.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:428;a:17:{s:2:\"id\";s:22:\"tab_style_4_hxwey7ekrq\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Tab Style Four\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_4.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:429;a:17:{s:2:\"id\";s:22:\"tab_style_5_k22v67k83j\";s:7:\"shareId\";s:3:\"tab\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:14:\"Tab Style Five\";s:9:\"thumbnail\";s:72:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_5.png\";s:9:\"fullimage\";s:71:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:42:\"http://demo.wphash.com/htmega/element-tab/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:3:\"tab\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:430;a:17:{s:2:\"id\";s:30:\"team_member_style_1_eppn2stb86\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style One\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_1.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:431;a:17:{s:2:\"id\";s:30:\"team_member_style_2_mpeeytw8bt\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style Two\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_2.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:432;a:17:{s:2:\"id\";s:30:\"team_member_style_3_j2x82w7m7k\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Three\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_3.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:433;a:17:{s:2:\"id\";s:30:\"team_member_style_4_mrdmhss77d\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Team Member Style Four\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_4.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:434;a:17:{s:2:\"id\";s:30:\"team_member_style_5_e8p6mc5umz\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Team Member Style Five\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_5.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:435;a:17:{s:2:\"id\";s:30:\"team_member_style_6_b3ets3u9p7\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"Team Member Style Six\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_6.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:436;a:17:{s:2:\"id\";s:30:\"team_member_style_7_u7tzqjqry5\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Seven\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_7.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:437;a:17:{s:2:\"id\";s:30:\"team_member_style_8_9s72yx6dgz\";s:7:\"shareId\";s:11:\"team-member\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Team Member Style Eight\";s:9:\"thumbnail\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_8.png\";s:9:\"fullimage\";s:79:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-team-member/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:11:\"team member\";i:1;s:4:\"team\";i:2;s:6:\"member\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:438;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_1_hlyuhnhd9u\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style One\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_1.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:439;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_2_onssr4f2zo\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style Two\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_2.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:440;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_3_w1svre56m6\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Three\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_3.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:441;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_4_9hn18azb1d\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Four\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_4.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:442;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_5_y3oj2nltgj\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Five\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_5.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:443;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_6_b09tws8ixf\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Testimonial Carousel Style Six\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_6.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:444;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_7_a348ntx5tp\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Seven\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_7.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:445;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_8_k925rlr55h\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:32:\"Testimonial Carousel Style Eight\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_8.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:446;a:17:{s:2:\"id\";s:38:\"testimonial_carosel_style_9_8e5eqxi9jy\";s:7:\"shareId\";s:20:\"testimonial-carousel\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:31:\"Testimonial Carousel Style Nine\";s:9:\"thumbnail\";s:88:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_9.png\";s:9:\"fullimage\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:50:\"http://demo.wphash.com/htmega/element-testimonial/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:20:\"testimonial carousel\";i:1;s:11:\"testimonial\";i:2;s:8:\"carousel\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:447;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_1_qd4g4v7ild\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Testimonial Grid Style One\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_1.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:448;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_2_31e417al2d\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Testimonial Grid Style Two\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_2.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:449;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_3_yup8k13zuu\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Testimonial Grid Style Three\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_3.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:450;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_4_x80mojmfqo\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Testimonial Grid Style Four\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_4.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:451;a:17:{s:2:\"id\";s:35:\"testimonial_grid_style_5_h8sybzp00j\";s:7:\"shareId\";s:16:\"testimonial-grid\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Testimonial Grid Style Five\";s:9:\"thumbnail\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_5.png\";s:9:\"fullimage\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"testimonial grid\";i:1;s:11:\"testimonial\";i:2;s:4:\"grid\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:452;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_1_liy9j6a4sw\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Thumbnails Gallery Style One\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_1.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:453;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_2_ufc22xec5k\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Thumbnails Gallery Style Two\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_2.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:454;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_3_07538rgt40\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"Thumbnails Gallery Style Three\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_3.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:455;a:17:{s:2:\"id\";s:37:\"thumbnails_gallery_style_4_q03tgw5rel\";s:7:\"shareId\";s:18:\"thumbnails-gallery\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Thumbnails Gallery Style Four\";s:9:\"thumbnail\";s:87:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_4.png\";s:9:\"fullimage\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.wphash.com/htmega/element-testimonial-grid/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:18:\"thumbnails gallery\";i:1;s:9:\"thumbnail\";i:2;s:7:\"gallery\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:456;a:17:{s:2:\"id\";s:25:\"toggle_style_1_0sclk1jnhv\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Toggle Style One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_1.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:457;a:17:{s:2:\"id\";s:25:\"toggle_style_2_mb4029rnr8\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:16:\"Toggle Style Two\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_2.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:458;a:17:{s:2:\"id\";s:25:\"toggle_style_3_0ymbq8xpdf\";s:7:\"shareId\";s:6:\"toggle\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:18:\"Toggle Style Three\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_3.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:45:\"http://demo.wphash.com/htmega/element-toggle/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:6:\"toggle\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:459;a:17:{s:2:\"id\";s:26:\"tooltip_style_1_tsf945zq7k\";s:7:\"shareId\";s:7:\"tooltip\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:7:\"Tooltip\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tooltip_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/tooltip_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-tooltip/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"tooltip\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:460;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_1_udxkxc9jlm\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Twitter Feed Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:461;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_2_fbxf7xmu4v\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Twitter Feed Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:462;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_3_sx6ji2pl9n\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Twitter Feed Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:463;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_4_h6betz0r4f\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Twitter Feed Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:464;a:17:{s:2:\"id\";s:31:\"twitter_feed_style_5_3th1qp6c87\";s:7:\"shareId\";s:12:\"twitter-feed\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Twitter Feed Style Five\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_5.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.wphash.com/htmega/element-twitter-feed/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"twitter feed\";i:1;s:6:\"blocks\";i:2;s:4:\"feed\";i:3;s:7:\"twitter\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:465;a:17:{s:2:\"id\";s:34:\"user_login_form_style_1_s06m851pob\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"User Login Form Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:466;a:17:{s:2:\"id\";s:34:\"user_login_form_style_2_gp2blr7u64\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"User Login Form Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:467;a:17:{s:2:\"id\";s:34:\"user_login_form_style_3_rdxrfgf0bf\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"User Login Form Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:468;a:17:{s:2:\"id\";s:34:\"user_login_form_style_4_9o3hca1337\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"User Login Form Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:469;a:17:{s:2:\"id\";s:34:\"user_login_form_style_5_rzcb4xr7rl\";s:7:\"shareId\";s:15:\"user-login-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"User Login Form Style Five\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_5.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.wphash.com/htmega/element-user-login/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:15:\"user login form\";i:1;s:5:\"login\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:470;a:17:{s:2:\"id\";s:32:\"user_register_style_1_jo7axqv8mm\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"User Register Form Style One\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_1.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:471;a:17:{s:2:\"id\";s:32:\"user_register_style_2_l6yq1hun03\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"User Register Form Style Two\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_2.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:472;a:17:{s:2:\"id\";s:32:\"user_register_style_3_r0o96wkojg\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:30:\"User Register Form Style Three\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_3.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:473;a:17:{s:2:\"id\";s:32:\"user_register_style_4_6ns1vzavnf\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"User Register Form Style Four\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_4.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:474;a:17:{s:2:\"id\";s:32:\"user_register_style_5_jtf0h4c0qb\";s:7:\"shareId\";s:18:\"user-register-form\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"User Register Form Style Five\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_5.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-user-register/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:18:\"user register form\";i:1;s:8:\"register\";i:2;s:4:\"form\";i:3;s:4:\"user\";i:4;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:475;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_1_ougcvd1bug\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Vertical Timeline Style One\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_1.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:476;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_2_e68bj78wlw\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Vertical Timeline Style Two\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_2.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:477;a:17:{s:2:\"id\";s:36:\"vertical_timeline_style_3_kr7719268c\";s:7:\"shareId\";s:17:\"vertical-timeline\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:29:\"Vertical Timeline Style Three\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_3.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.wphash.com/htmega/element-vertical-timeline/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:17:\"vertical timeline\";i:1;s:8:\"vertical\";i:2;s:8:\"timeline\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:478;a:17:{s:2:\"id\";s:31:\"video_player_style_1_fy78h0vyah\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Video Player Style One\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_1.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:479;a:17:{s:2:\"id\";s:31:\"video_player_style_2_u7gen4qpkb\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:22:\"Video Player Style Two\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_2.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:480;a:17:{s:2:\"id\";s:31:\"video_player_style_3_arj5tv00yc\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:24:\"Video Player Style Three\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_3.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:481;a:17:{s:2:\"id\";s:31:\"video_player_style_4_lgx1m1kd7y\";s:7:\"shareId\";s:12:\"video-player\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"Video Player Style Four\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_4.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:53:\"http://demo.wphash.com/htmega/elementor-video-player/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:12:\"video player\";i:1;s:5:\"video\";i:2;s:6:\"player\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:482;a:17:{s:2:\"id\";s:26:\"weather_style_1_32zautjaos\";s:7:\"shareId\";s:7:\"weather\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:17:\"Weather Style One\";s:9:\"thumbnail\";s:76:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/weather_style_1.png\";s:9:\"fullimage\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/weather_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:46:\"http://demo.wphash.com/htmega/element-weather/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:2:{i:0;s:7:\"weather\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:483;a:17:{s:2:\"id\";s:41:\"woocommerce_add_to_cart_button_6g8fpvr3p7\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:23:\"WooCommerce Add To Cart\";s:9:\"thumbnail\";s:91:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_add_to_cart_button.png\";s:9:\"fullimage\";s:90:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_add_to_cart_button.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:62:\"http://demo.wphash.com/htmega/element-woocommerce-add-to-cart/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:3:{i:0;s:11:\"add to cart\";i:1;s:6:\"blocks\";i:2;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:484;a:17:{s:2:\"id\";s:32:\"woocommerce_cart_page_cqqy50ybwv\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:21:\"WooCommerce Cart Page\";s:9:\"thumbnail\";s:82:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_cart_page.png\";s:9:\"fullimage\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_cart_page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:60:\"http://demo.wphash.com/htmega/element-woocommerce-cart-page/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:9:\"cart page\";i:1;s:11:\"woocommerce\";i:2;s:6:\"blocks\";i:3;s:4:\"page\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:485;a:17:{s:2:\"id\";s:31:\"woocommerce_category_01wxfbh3ge\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"WooCommerce Category Page\";s:9:\"thumbnail\";s:81:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_category.png\";s:9:\"fullimage\";s:80:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_category.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:59:\"http://demo.wphash.com/htmega/element-woocommerce-category/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:13:\"category page\";i:1;s:8:\"category\";i:2;s:6:\"blocks\";i:3;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:486;a:17:{s:2:\"id\";s:36:\"woocommerce_checkout_page_yj01hu27zk\";s:7:\"shareId\";s:11:\"woocommerce\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:25:\"WooCommerce Checkout Page\";s:9:\"thumbnail\";s:86:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_checkout_page.png\";s:9:\"fullimage\";s:85:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_checkout_page.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:52:\"http://demo.wphash.com/htmega/element-checkout-page/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:5:{i:0;s:13:\"checkout page\";i:1;s:8:\"checkout\";i:2;s:4:\"page\";i:3;s:6:\"blocks\";i:4;s:11:\"woocommerce\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:487;a:17:{s:2:\"id\";s:34:\"working_process_style_1_x5b6d6s8y4\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Working Progress Style One\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_1.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:488;a:17:{s:2:\"id\";s:34:\"working_process_style_2_2db15ccu1g\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:26:\"Working Progress Style Two\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_2.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:489;a:17:{s:2:\"id\";s:34:\"working_process_style_3_z1cfo5eugm\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:28:\"Working Progress Style Three\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_3.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:490;a:17:{s:2:\"id\";s:34:\"working_process_style_4_mfu7ssf7xu\";s:7:\"shareId\";s:16:\"working-progress\";s:7:\"tmpType\";s:3:\"pro\";s:5:\"title\";s:27:\"Working Progress Style Four\";s:9:\"thumbnail\";s:84:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_4.png\";s:9:\"fullimage\";s:83:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.wphash.com/htmega/element-working-process/\";s:8:\"category\";s:6:\"blocks\";s:4:\"tags\";a:4:{i:0;s:16:\"working progress\";i:1;s:7:\"working\";i:2;s:8:\"progress\";i:3;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:491;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-1_nud72anbaq\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_1.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:40:\"http://demo.shrimpthemes.com/1/megamenu/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:492;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-2_n29a43xw43\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_2.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:493;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-3_5shz3rfvk8\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Three\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_3.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:51:\"http://demo.shrimpthemes.com/1/megamenu/home-three/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:494;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-4_68ete7pa9g\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Four\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_4.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:58:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-product/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:495;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-5_b9qfvdz9yh\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Five\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_5.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:54:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-map/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:496;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-6_vvm8qqynmp\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Six\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_6.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:497;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-7_kkvzxqmc8f\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Seven\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_7.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:56:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-image/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:498;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-8_9gpnpqn3yb\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:17:\"Menu Layout Eight\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_8.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:55:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-post/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:499;a:17:{s:2:\"id\";s:29:\"mega-menu-layout-9_3eecfdhfd9\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:16:\"Menu Layout Nine\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_9.png\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:61:\"http://demo.shrimpthemes.com/1/megamenu/menu-with-categories/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:500;a:17:{s:2:\"id\";s:30:\"mega-menu-layout-10_mnccf7239b\";s:7:\"shareId\";s:9:\"mega-menu\";s:5:\"title\";s:15:\"Menu Layout Ten\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_10.png\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:49:\"http://demo.shrimpthemes.com/1/megamenu/home-two/\";s:8:\"category\";s:9:\"mega menu\";s:4:\"tags\";a:2:{i:0;s:9:\"mega menu\";i:1;s:4:\"menu\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:501;a:17:{s:2:\"id\";s:14:\"header-1-17752\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-1.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:4:\"free\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:0:{}s:13:\"requiredtheme\";s:0:\"\";}i:502;a:17:{s:2:\"id\";s:14:\"header-2-15569\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Two\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-2.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:503;a:17:{s:2:\"id\";s:14:\"header-3-18697\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Three\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-3.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:504;a:17:{s:2:\"id\";s:14:\"header-4-18564\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Four\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-4.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:505;a:17:{s:2:\"id\";s:14:\"header-5-16078\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Five\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-5.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:506;a:17:{s:2:\"id\";s:14:\"header-6-15369\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Six\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-6.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:507;a:17:{s:2:\"id\";s:14:\"header-7-16242\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Seven\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-7.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:508;a:17:{s:2:\"id\";s:14:\"header-8-15269\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:12:\"Header Eight\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-8.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:509;a:17:{s:2:\"id\";s:14:\"header-9-17118\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:11:\"Header Nine\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-9.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:510;a:17:{s:2:\"id\";s:15:\"header-10-18087\";s:7:\"shareId\";s:6:\"header\";s:5:\"title\";s:10:\"Header Ten\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-10.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"header\";s:4:\"tags\";a:2:{i:0;s:6:\"header\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:511;a:17:{s:2:\"id\";s:14:\"footer-1-17752\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer One\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-1.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:512;a:17:{s:2:\"id\";s:14:\"footer-2-15444\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Two\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-2.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:513;a:17:{s:2:\"id\";s:14:\"footer-3-16047\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Three\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-3.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-3.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:514;a:17:{s:2:\"id\";s:14:\"footer-4-15702\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Four\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-4.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-4.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:515;a:17:{s:2:\"id\";s:14:\"footer-5-17959\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Five\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-5.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-5.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:516;a:17:{s:2:\"id\";s:14:\"footer-6-16049\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Six\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-6.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-6.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:517;a:17:{s:2:\"id\";s:14:\"footer-7-18195\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Seven\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-7.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-7.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:518;a:17:{s:2:\"id\";s:14:\"footer-8-16769\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:12:\"Footer Eight\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-8.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-8.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:519;a:17:{s:2:\"id\";s:14:\"footer-9-15365\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:11:\"Footer Nine\";s:9:\"thumbnail\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-9.png\";s:9:\"fullimage\";s:68:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-9.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:520;a:17:{s:2:\"id\";s:15:\"footer-10-18245\";s:7:\"shareId\";s:6:\"footer\";s:5:\"title\";s:10:\"Footer Ten\";s:9:\"thumbnail\";s:70:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-10.png\";s:9:\"fullimage\";s:69:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-10.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:6:\"footer\";s:4:\"tags\";a:2:{i:0;s:6:\"footer\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:521;a:17:{s:2:\"id\";s:19:\"blog-layout-1-17113\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:15:\"Blog Layout One\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-1.jpg\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:1:\"#\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:522;a:17:{s:2:\"id\";s:19:\"blog-layout-2-18629\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:15:\"Blog Layout Two\";s:9:\"thumbnail\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-2.jpg\";s:9:\"fullimage\";s:73:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-2.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:36:\"http://demo.wphash.com/2/ht-builder/\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:6:\"blocks\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}i:523;a:17:{s:2:\"id\";s:20:\"blog-details-1-16721\";s:7:\"shareId\";s:4:\"blog\";s:5:\"title\";s:16:\"Blog Details One\";s:9:\"thumbnail\";s:75:\"https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-details-1.jpg\";s:9:\"fullimage\";s:74:\"https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-details-1.png\";s:6:\"author\";s:9:\"HasThemes\";s:3:\"url\";s:1:\"#\";s:7:\"demoUrl\";s:67:\"http://demo.wphash.com/2/ht-builder/the-top-20-trends-of-the-world/\";s:8:\"category\";s:4:\"blog\";s:4:\"tags\";a:4:{i:0;s:4:\"blog\";i:1;s:9:\"blog page\";i:2;s:6:\"blocks\";i:3;s:12:\"blog details\";}s:5:\"isPro\";s:1:\"0\";s:7:\"tmpType\";s:3:\"pro\";s:7:\"builder\";a:1:{i:0;s:9:\"elementor\";}s:8:\"demoType\";s:6:\"blocks\";s:11:\"freePlugins\";a:1:{i:0;s:59:\"ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega\";}s:10:\"proPlugins\";a:1:{i:0;s:75:\"htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/\";}s:13:\"requiredtheme\";s:0:\"\";}}}','no'),(1052,'elementor_library_category_children','a:0:{}','yes'),(1055,'ca48c8320_eael_updated_at','1652881527','no'),(1182,'twae-v','1.3.5','yes'),(1183,'twae-type','FREE','yes'),(1184,'twae-installDate','2022-05-18 01:58:00','yes'),(1262,'elements_kit_onboard_status','onboarded','yes'),(1270,'elementor_pro_remote_info_api_data_3.6.4','a:2:{s:7:\"timeout\";i:1652976288;s:5:\"value\";s:168858:\"{\"stable_version\":\"3.7.1\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:157307:\\\"<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser <\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget <\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>Elementor\\\\Utils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget <\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorPro\\\\Modules\\\\Forms\\\\Classes\\\\Action_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.7.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.9.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MToxMTYyNWVlODA0OWM2NjcxODdmMTkwZmFkM2RjMjAyYzpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbjow\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MToxMTYyNWVlODA0OWM2NjcxODdmMTkwZmFkM2RjMjAyYzpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbjow\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.9.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MTozLjcuMDo5NWM5NjgzYmNhZTI3YzQ5YmFkZDYwZDU3Yjg2M2YyZjpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbg==\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MTozLjcuMDo5NWM5NjgzYmNhZTI3YzQ5YmFkZDYwZDU3Yjg2M2YyZjpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbg==\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]}}\";}','no'),(1276,'edd_sl_6a648dca91dd528042e69cfc806862e8','a:2:{s:7:\"timeout\";i:1652924216;s:5:\"value\";s:32576:\"{\"new_version\":\"2.6.7\",\"stable_version\":\"2.6.7\",\"name\":\"ElementsKit\",\"slug\":\"elementskit\",\"url\":\"https:\\/\\/account.wpmet.com\\/downloads\\/elementskit\\/?changelog=1\",\"last_updated\":\"2022-04-27 09:35:37\",\"homepage\":\"https:\\/\\/account.wpmet.com\\/downloads\\/elementskit\\/\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"changelog\":\"<p>Version: 2.6.7 (27th April 2022)<br \\/>\\nAdded: Compatibility with PHP 8.0.<br \\/>\\nTweaked: JS , PHP & CSS.<\\/p>\\n<p>Version: 2.6.6 (25th April 2022)<br \\/>\\nFixed: Advance Tab widget issue.<br \\/>\\nFixed: Advance Accordion widget issue.<br \\/>\\nFixed: Advance Toggle widget issue.<br \\/>\\nFixed: Advance Slider widget issue.<\\/p>\\n<p>Version: 2.5.6 (2022-04-18)<br \\/>\\nAdded: Language Files.<br \\/>\\nAdded: WPMl support for Elementskit template specially for Header &amp; Footer Builder.<br \\/>\\nFixed: Escaping issues.<br \\/>\\nFixed: Theme support issue.<br \\/>\\nFixed: One page scroll issue.<br \\/>\\nTweaked: Change some links.<\\/p>\\n<p>Version: 2.6.4 (27th March 2022)<br \\/>\\nAdded: Subcontinent and Image in Advanced Tooltip widget.<br \\/>\\nImproved: Added Advance tooltip subtitle, image, and many controls.<br \\/>\\nFixed: Body alignment issue in Table widget.<br \\/>\\nFixed: HTML content issue in Advanced Tooltip widget.<br \\/>\\nFixed: Instagram widget caption and others issues<br \\/>\\nFixed: Elementor 3.6.1 conflicts for deprecation.<br \\/>\\nFixed: Elementor responsive control devices compatibility issue<br \\/>\\nFixed: Tweak border radius issue of advance tooltip widget<br \\/>\\nFixed: Advanced tab issue ( specially with OceanWP theme )<\\/p>\\n<p>Version: 2.6.3 (15th February 2022)<br \\/>\\nImproved: Parallax doesn\'t work on tablets &amp; mobile devices.<br \\/>\\nFixed: Table widget issue ( Editor output style not work &amp; HTML print with image).<br \\/>\\nFixed: Video widget issue.<br \\/>\\nFixed: Conditional content module has a conflict with the Russian language.<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Version: 2.6.2 (30th January 2022)<br \\/>\\nAdded: Integrate google sheet inside table widget.<br \\/>\\nAdded: WYSIWYG control for table body text.<br \\/>\\nFixed: Table widget open function warning.<br \\/>\\nFixed: Table widget image issue.<\\/p>\\n<p>Version: 2.6.1 (22nd January 2022)<br \\/>\\nFixed: Icon missing &amp; replaced font awesome icon with elementor icon.<br \\/>\\nFixed: Advanced Tab issue with OceanWP theme.<br \\/>\\nTweaked: CSS and JS improved.<\\/p>\\n<p>Version: 2.6.0 (9th January 2022)<br \\/>\\nAdded: Ajax Loading support for Advanced Tab Widget.<br \\/>\\nImproved: Improved data attribute.<br \\/>\\nImproved: Update paralax library version(Jaralax).<br \\/>\\nImproved: Mini cart &amp; ajax loading support for Advanced Tab.<br \\/>\\nFixed: HTML tag does not work into table widget cell text.<br \\/>\\nFixed: PHP notice and warning when the username does not exist in the Pinterest feed.<br \\/>\\nFixed: Limiting Instagram feeds causes shrinking of columns in Instagram feed.<\\/p>\\n<p>Version: 2.5.0 (20th December 2021)<br \\/>\\nNew: Hover option added for Vertical Menu Widget.<br \\/>\\nNew: Russian language for translation.<br \\/>\\nFix: Sticky Offset support for Smooth Scrolling.<br \\/>\\nFix: Background Image rendering issue for Parallax Module.<br \\/>\\nFix: Table widget missing controls.<br \\/>\\nFix: Instagram Feed Fatal Error.<br \\/>\\nRemoved: Comment and like count from Instagram feed widget.<\\/p>\\n<p>Version: 2.4.1 (2nd December 2021)<br \\/>\\nFix: Script defer loading issue for Copy-Paste Module.<br \\/>\\nTweak: CSS and JS improved<\\/p>\\n<p>Version: 2.4.0 (25th November 2021)<br \\/>\\nImproved: Bundled Modules js for avoiding multiple requests to increase the performance.<br \\/>\\nTweak: CSS and JS improved<\\/p>\\n<p>Version: 2.3.7 (7th November 2021)<br \\/>\\nFix: Woo Product Carousel issue.<br \\/>\\nFix: Advanced tab nested issue fixed.<br \\/>\\nFix: fixed grid compatibility issue.<br \\/>\\nTweak: CSS and JS improved<\\/p>\\n<p>Version: 2.3.6 (26th September 2021)<br \\/>\\nFix: Woo Category widget grid issue with Astra theme<br \\/>\\nFix: Woo Product List widget grid issue with Astra theme<br \\/>\\nFix: Hover behavior issue for Woo Mini-Cart Widget.<br \\/>\\nFix: Responsive support for Chart Widget with large data.<br \\/>\\nFix: Horizontal style content alignment for Timeline Widget.<\\/p>\\n<p>Version: 2.3.5 (19 August 2021)<br \\/>\\nFix: JS conflict when the first load for Parallax Module.<br \\/>\\nFix: Responsive controls issue for Woo Category List Widget.<br \\/>\\nFix: Removed deprecated Elementor PHP Methods from Widgets.<\\/p>\\n<p>Version: 2.3.4<br \\/>\\nFix: Advanced Accordion and Advanced Tab widgets conflict with the OceanWP theme.<br \\/>\\nFix: Advanced Toggle widget Indicator Global color issues.<br \\/>\\nFix: Unfold widget title alignment issue.<br \\/>\\nFix: Timeline widget content alignment issue.<\\/p>\\n<p>Version: 2.3.3<br \\/>\\nFix: Swiper Slider conflict issues fixed with other themes.<\\/p>\\n<p>Version: 2.3.2<br \\/>\\nTweak: Removed loop from carousel-related widgets.<\\/p>\\n<p>Version: 2.3.1<br \\/>\\nFix: Multiple placeholder image upload issues when importing widget.<br \\/>\\nFix: Background color delay loading issues fixed on Table widget.<br \\/>\\nTweak: Improved W3validation.<br \\/>\\nTweak: TweenMax JS Library updated to the latest version.<br \\/>\\nTweek: Converted widgets slideshow from slick to swiper.<br \\/>\\nTweak: Optimized Images.<br \\/>\\nTweak: Removed Trustpilot widget support.<\\/p>\\n<p>Version: 2.3.0<br \\/>\\nNew: Refined Layout Manager with Tabs, Categories, and Search filters.<br \\/>\\nNew: Modern and Creative Template Kits, Pages, and Section Ready Templates.<br \\/>\\nTweak: Manual cache clear button for Dribbble Feed widget.<br \\/>\\nTweak: Getting access token made easy for Dribbble Feed widget.<br \\/>\\nTweak: Bring unfold widget into viewport while closing the content.<br \\/>\\nFix: Mobile scrolling issues for Hotspot Widget.<br \\/>\\nFix: Undefined variables for Twitter Feed Widget.<br \\/>\\nFix: Limit for Facebook Feed API.<br \\/>\\nFix: Reaction Icons for Facebook Feed.<br \\/>\\nFix: Minor spelling issue.<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Version: 2.2.3 (10 May, 2021)<br \\/>\\nNew: Hover Trigger on Advanced Tab Widget.<br \\/>\\nTweak: Improvements for the Instagram API.<br \\/>\\nTweak: Improvements for the Facebook Feed API.<br \\/>\\nFix: Profile Picture issue for Instagram Widget.<\\/p>\\n<p>Version: 2.2.2 (29 April, 2021)<br \\/>\\nNew: Blog Posts Widget Floating Category.<br \\/>\\nNew: Blog Posts Widget Various Missing Controls.<br \\/>\\nNew: Dribbble Feed User Info &amp; Header.<br \\/>\\nNew: Dribbble Feed Various Missing Controls.<br \\/>\\nNew: Border control to Pinterest feed widget.<br \\/>\\nNew: Follow button icon control to Twitter feed widget.<br \\/>\\nNew: Padding control to Twitter feed widget.<br \\/>\\nNew: Header background control to Twitter feed widget.<br \\/>\\nNew: Share button to Twitter feed widget.<br \\/>\\nTweak: SVG icon to elementskit icon to Twitter feed widget.<br \\/>\\nTweak: Layout five to Behance feed widget.<br \\/>\\nTweak: Replaced deprecated Elementor PHP Methods for Widgets.<br \\/>\\nFix: Category List Widget separator position issue.<br \\/>\\nFix: Google Map Widget static type image issue.<br \\/>\\nFix: Facebook Page Review content alignment issue.<br \\/>\\nFix: Twitter feed read more button.<br \\/>\\nFix: Header Alignment Control for Table Widget.<br \\/>\\nFix: Product Count styles for Woo Category List Widget.<br \\/>\\nFix: Responsive support for Dribbble Feed Widget.<\\/p>\\n<p>Version: 2.2.1 (14-04-2021)<br \\/>\\nFix: Compatibility issues with Elementor 3.2.0.<\\/p>\\n<p>Version: 2.2.0 (02-03-2021)<br \\/>\\nImprove: Minor bug fix and code improvements.<br \\/>\\nImprove: Minor escaping and validation improvements.<\\/p>\\n<p>Version: 2.1.7<br \\/>\\nNew: Image Size control for Gallery Widget.<br \\/>\\nNew: Option to Show\\/Hide Facebook Messenger Dialog Box.<br \\/>\\nNew: Image Comparison support for Advanced Tab Widget.<br \\/>\\nFix: Responsive glitch in Timeline Widget.<\\/p>\\n<p>Version: 2.1.6 (07-02-2021)<br \\/>\\nNew: Introducing Image Swap Widget - show a different image as the user hovers.<\\/p>\\n<p>Version: 2.1.5 (27-01-2021)<br \\/>\\nFix Sticky Module conflict with latest Elementor.<br \\/>\\nFix Slick Library update support for the Latest Elementor update.<br \\/>\\nFix: Woo Category List widget featured style minor CSS grid issue.<\\/p>\\n<p>Version: 2.1.4 (25-01-2021)<br \\/>\\nTweak: Support W3C validation when using Facebook Messenger.<br \\/>\\nFix: Blog Posts Widget default image size changed to provide clear images.<\\/p>\\n<p>Version: 2.1.3 (18-01-2021)<br \\/>\\nFix: Instagram API expiration time extended.<br \\/>\\nFix: Editor live changes support for Advanced Tooltip.<\\/p>\\n<p>Version: 2.1.2 (12-01-2021)<br \\/>\\nFixed Advanced Tooltip js conflict in the Elementor editor.<\\/p>\\n<p>Version: 2.1.1 (10-01-2021)<br \\/>\\nNew: Introducing Advanced Tooltip - add tooltip to any Widget.<br \\/>\\nFix: Improved Advanced Toggle Widget toggler btn.<br \\/>\\nFix: Missing string translations for Table Widget.<br \\/>\\nFix: List style reset for Gallery Filter.<\\/p>\\n<p>Version: 2.1.0 (24-12-2020)<br \\/>\\nNew: Advanced Tab Widget now has the option to enable URL hash routing capability.<br \\/>\\nNew: Option to set popup alignment for Woo Mini-Cart Widget.<br \\/>\\nFix: Popup Modal Widget content editor showing the same content for multiple widgets on the same page.<br \\/>\\nFix: Minor CSS broken issues fixed on Hotspot Widget.<br \\/>\\nFix: Some CSS broken issues fixed on the hotspot<br \\/>\\nFix: added featured category link field \'Woo Category List\' widget<br \\/>\\nFix: Buttons white-space are reset to default.<br \\/>\\nFix: Woo Product Carousel and List Widget compatibility with TwentyTwentyOne Theme.<br \\/>\\nFix: CSS ul and ol list-style weren\'t visible inside widgets.<br \\/>\\nVersion: 2.0.6 (06-12-2020)<br \\/>\\nFix: JS conflict issues fixed with the \'Rank Math\' plugin.<br \\/>\\nImprove: CSS and JS improved.<\\/p>\\n<p>Version: 2.0.5 (01-12-2020)<br \\/>\\nNew: Added \'Popup Modal\' widget.<br \\/>\\nNew: Added new Instagram widget with Instagram official API.<br \\/>\\nNew: Added control for keeping one dot always active.<br \\/>\\nNew: Added Iframe and shortcode support on content.<br \\/>\\nFix: Clicking pointer issues fixed.<br \\/>\\nFix: \\\"Non-property\\\" notice in the Instagram widget.<br \\/>\\nFix: Fixed the line issues when increasing the pointer size.<br \\/>\\nFix: Minor responsive issues fixed.<\\/p>\\n<p>Version: 2.0.3 (16-11-2020)<br \\/>\\nNew: Advanced controls for Conditional Widget.<br \\/>\\nNew: Cross-domain copy-paste module (the long waited feature).<br \\/>\\nNew: Added default color scheme on Facebook Messenger widget.<br \\/>\\nNew: Added Locale on Facebook Messenger widget.<br \\/>\\nFix: Current image missing for Advanced Tab.<br \\/>\\nFix: Ekit button js error when the \\\"add a section\\\" is clicked.<br \\/>\\nTweak: Instagram feed widget.<br \\/>\\nTweak: Improved CSS &amp; JS.<\\/p>\\n<p>Version: 2.0.2<br \\/>\\nFix Facebook feed API.<br \\/>\\nFix Some spelling mistakes.<br \\/>\\nFix: License activation conflicting.<\\/p>\\n<p>Version: 2.0.1<br \\/>\\nFix: Instagram\'s cache issue. Posts were not properly updated.<\\/p>\\n<p>Version: 2.0.0<\\/p>\\n<p>Added: New features: \\\"dribble-feed, facebook-feed, facebook-review, Instagram-feed, twitter-feed, Trustpilot, unfold, yelp, zoom, Unfold\\\"<br data-rich-text-line-break=\\\"true\\\" \\/>Added: Pagination to Blog Posts.<br data-rich-text-line-break=\\\"true\\\" \\/>Added: Import &amp; export system for the WidgetBuilder module.<br data-rich-text-line-break=\\\"true\\\" \\/>Fix: Google Map API Script is enqueueing even it\'s not enabled.<br data-rich-text-line-break=\\\"true\\\" \\/>Fix: Facebook Review Broken issue.<br data-rich-text-line-break=\\\"true\\\" \\/>Fix: HeaderFooter builder compatibility.<\\/p>\\n<p>Version 1.5.8<\\/p>\\n<p>Added Widget builder stable version<\\/p>\\n<p>Version 1.5.7<\\/p>\\n<p>Added elementor 3.0.4 compatibility<\\/p>\\n<p>Version: 1.5.6<\\/p>\\n<p>Added elementor 3.0.1 compatibility<\\/p>\\n<p>Version: 1.5.5<\\/p>\\n<p>- Improved Nav menu widget<br \\/>\\n- Changed ekit menu position in admin<br \\/>\\n- improved post tab widget<\\/p>\\n<p>- Zoom Integration module added<\\/p>\\n<p>Version: 1.5.3<\\/p>\\n<p>Fixed Instagram widgets\\u00a0 issue<\\/p>\\n<p>Version: 1.5.2<\\/p>\\n<p>From version 1.5.2 ElementsKit Pro requires a Lite version of elementskit for better performance and maintenance.\\u00a0 The big update is coming with lots of improvement in the next update :)<\\/p>\\n<p>Elementskit icon rendering issues fixed<br \\/>\\nSocial-media Href duplication issues fixed<br \\/>\\nMinor js issue fixed for Onepage Scroll Module<\\/p>\\n<p>Version 1.5.0<\\/p>\\n<p>Updated Lottie Widget<br \\/>\\nUpdated Woo_Product_List<br \\/>\\nUpdated Woo_Product_Carousel<br \\/>\\nUpdated Nav_Menu<br \\/>\\nUpdated Gallery<\\/p>\\n<p>Added Megamenu width option<\\/p>\\n<p>Version 1.4.8<br \\/>\\nNew: added Lottie Widget<br \\/>\\nNew: added one page-scroll module<br \\/>\\nTweak: Some widgets control modified<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>version 1.4.7<br \\/>\\nFix: mobile sub-menu issues fixed<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Version 1.4.6<br \\/>\\nFix: menu broken fix<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.5<br \\/>\\nFix: megamenu popup issues<br \\/>\\nFix: Url attribute added correctly in all widgets<br \\/>\\nFix: Advanced tab, accordion, off-canvas, etc popup issues fixed<br \\/>\\nFix: Conflict fixed with the latest elementor<br \\/>\\nNew: Onepage scroll module control added<br \\/>\\nRemoved: elementskit.ttf file<\\/p>\\n<p>Version 1.4.4<\\/p>\\n<p>Fix: Responsiveness fixed on woo-product-carousel widgets<br \\/>\\nFix: CSS bug fix on the popup<br \\/>\\nFix: post-list widget meta date<br \\/>\\nFix: Testimonial widgets improved style<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.3<\\/p>\\n<p>Fix: More secure modal<br \\/>\\nFix: Removed container from blog post widgets<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.2<\\/p>\\n<p>Refactor: Timeline widget<br \\/>\\nImproved: Sticky module option<br \\/>\\nFix: Widgets Improved<br \\/>\\nFix: Elementor Compatability Improved<br \\/>\\nFix: Megamenu bug fixed<br \\/>\\nFix: Woo Product list widget mobile Compatability Improved<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.1<br \\/>\\nNew: RTL feature added<br \\/>\\nFix: Latest elementor compatibility<br \\/>\\nFix: WPML compatibility<br \\/>\\nFix: Page list new tab issues<br \\/>\\nFix: google indexing issues<br \\/>\\nFix: IMG linked on image box widget<br \\/>\\nFix: Popup broken issues<br \\/>\\nFix: Fix theme conflict for woo widgets<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<br \\/>\\nVersion 1.4.0<\\/p>\\n<p>Removed unnecessary dynamic tags from widgets.<\\/p>\\n<p>Fix: Compatability issues with elementor latest version<br \\/>\\nFix: Excluding template files from search engines<\\/p>\\n<p>Version 1.3.6<br \\/>\\nDark mode CSS fixed<br \\/>\\nFixed admin data not saving in all deactivate mode<br \\/>\\nFixed woo product img link<br \\/>\\nicon box button hover effect fixed<br \\/>\\nwpml mega-menu fixed<br \\/>\\nupdate Instagram<\\/p>\\n<p>v1.3.5<br \\/>\\nupdate woo carousel responsive issue<br \\/>\\nupdate hotspot responsive issue<br \\/>\\nupdate Instagram one column style push to the responsive breakpoint<br \\/>\\nadd 2 notes on the post grid and post tab<br \\/>\\nfixed header search issues<br \\/>\\nrenamed shuffle-letters js in the config file<\\/p>\\n<p>Version 1.3.4<br \\/>\\nFix: added reset query in the blog post widget<br \\/>\\nFix: added icon from control in the search field<br \\/>\\nFix: Icon box animation fixing<br \\/>\\nFix: ImageLoaded js issues in image comparison and gallery widget<br \\/>\\nFix: JS Improvements<br \\/>\\nFix: CSS Improvements<br \\/>\\nNew: added new URL control in the gallery widget to make each item linkable.<br \\/>\\nNew: added new dashboard design<\\/p>\\n<p>Version 1.3.3<br \\/>\\nUpdate icon-box<br \\/>\\nAdded icon from control in the search field<br \\/>\\nAdded link control in the gallery<br \\/>\\nAdded a control from img comparison,<br \\/>\\nUpdated woo cat-list hover title color<br \\/>\\nUpdate dashboard design<\\/p>\\n<p>1.3.1<br \\/>\\nURL updated<br \\/>\\nMinor bug fixed<\\/p>\\n<p>1.3.0<br \\/>\\nMoved to our site<br \\/>\\nWith Icon update<\\/p>\\n\"},\"banners\":{\"high\":\"https:\\/\\/account.wpmet.com\\/wp-content\\/uploads\\/edd\\/2019\\/11\\/banner-1544x500.png\",\"low\":\"https:\\/\\/account.wpmet.com\\/wp-content\\/uploads\\/edd\\/2019\\/11\\/banner-772x250.png\"},\"icons\":{\"1x\":\"https:\\/\\/account.wpmet.com\\/wp-content\\/uploads\\/edd\\/2021\\/04\\/ElementsKit.jpg\",\"2x\":\"https:\\/\\/account.wpmet.com\\/wp-content\\/uploads\\/edd\\/2021\\/04\\/ElementsKit.jpg\"},\"msg\":\"No license key has been provided.\",\"stable_tag\":\"\",\"license\":\"\",\"tested\":\"\",\"changelog\":[\"<p>Version: 2.6.7 (27th April 2022)<br \\/>\\nAdded: Compatibility with PHP 8.0.<br \\/>\\nTweaked: JS , PHP & CSS.<\\/p>\\n<p>Version: 2.6.6 (25th April 2022)<br \\/>\\nFixed: Advance Tab widget issue.<br \\/>\\nFixed: Advance Accordion widget issue.<br \\/>\\nFixed: Advance Toggle widget issue.<br \\/>\\nFixed: Advance Slider widget issue.<\\/p>\\n<p>Version: 2.5.6 (2022-04-18)<br \\/>\\nAdded: Language Files.<br \\/>\\nAdded: WPMl support for Elementskit template specially for Header &amp; Footer Builder.<br \\/>\\nFixed: Escaping issues.<br \\/>\\nFixed: Theme support issue.<br \\/>\\nFixed: One page scroll issue.<br \\/>\\nTweaked: Change some links.<\\/p>\\n<p>Version: 2.6.4 (27th March 2022)<br \\/>\\nAdded: Subcontinent and Image in Advanced Tooltip widget.<br \\/>\\nImproved: Added Advance tooltip subtitle, image, and many controls.<br \\/>\\nFixed: Body alignment issue in Table widget.<br \\/>\\nFixed: HTML content issue in Advanced Tooltip widget.<br \\/>\\nFixed: Instagram widget caption and others issues<br \\/>\\nFixed: Elementor 3.6.1 conflicts for deprecation.<br \\/>\\nFixed: Elementor responsive control devices compatibility issue<br \\/>\\nFixed: Tweak border radius issue of advance tooltip widget<br \\/>\\nFixed: Advanced tab issue ( specially with OceanWP theme )<\\/p>\\n<p>Version: 2.6.3 (15th February 2022)<br \\/>\\nImproved: Parallax doesn\'t work on tablets &amp; mobile devices.<br \\/>\\nFixed: Table widget issue ( Editor output style not work &amp; HTML print with image).<br \\/>\\nFixed: Video widget issue.<br \\/>\\nFixed: Conditional content module has a conflict with the Russian language.<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Version: 2.6.2 (30th January 2022)<br \\/>\\nAdded: Integrate google sheet inside table widget.<br \\/>\\nAdded: WYSIWYG control for table body text.<br \\/>\\nFixed: Table widget open function warning.<br \\/>\\nFixed: Table widget image issue.<\\/p>\\n<p>Version: 2.6.1 (22nd January 2022)<br \\/>\\nFixed: Icon missing &amp; replaced font awesome icon with elementor icon.<br \\/>\\nFixed: Advanced Tab issue with OceanWP theme.<br \\/>\\nTweaked: CSS and JS improved.<\\/p>\\n<p>Version: 2.6.0 (9th January 2022)<br \\/>\\nAdded: Ajax Loading support for Advanced Tab Widget.<br \\/>\\nImproved: Improved data attribute.<br \\/>\\nImproved: Update paralax library version(Jaralax).<br \\/>\\nImproved: Mini cart &amp; ajax loading support for Advanced Tab.<br \\/>\\nFixed: HTML tag does not work into table widget cell text.<br \\/>\\nFixed: PHP notice and warning when the username does not exist in the Pinterest feed.<br \\/>\\nFixed: Limiting Instagram feeds causes shrinking of columns in Instagram feed.<\\/p>\\n<p>Version: 2.5.0 (20th December 2021)<br \\/>\\nNew: Hover option added for Vertical Menu Widget.<br \\/>\\nNew: Russian language for translation.<br \\/>\\nFix: Sticky Offset support for Smooth Scrolling.<br \\/>\\nFix: Background Image rendering issue for Parallax Module.<br \\/>\\nFix: Table widget missing controls.<br \\/>\\nFix: Instagram Feed Fatal Error.<br \\/>\\nRemoved: Comment and like count from Instagram feed widget.<\\/p>\\n<p>Version: 2.4.1 (2nd December 2021)<br \\/>\\nFix: Script defer loading issue for Copy-Paste Module.<br \\/>\\nTweak: CSS and JS improved<\\/p>\\n<p>Version: 2.4.0 (25th November 2021)<br \\/>\\nImproved: Bundled Modules js for avoiding multiple requests to increase the performance.<br \\/>\\nTweak: CSS and JS improved<\\/p>\\n<p>Version: 2.3.7 (7th November 2021)<br \\/>\\nFix: Woo Product Carousel issue.<br \\/>\\nFix: Advanced tab nested issue fixed.<br \\/>\\nFix: fixed grid compatibility issue.<br \\/>\\nTweak: CSS and JS improved<\\/p>\\n<p>Version: 2.3.6 (26th September 2021)<br \\/>\\nFix: Woo Category widget grid issue with Astra theme<br \\/>\\nFix: Woo Product List widget grid issue with Astra theme<br \\/>\\nFix: Hover behavior issue for Woo Mini-Cart Widget.<br \\/>\\nFix: Responsive support for Chart Widget with large data.<br \\/>\\nFix: Horizontal style content alignment for Timeline Widget.<\\/p>\\n<p>Version: 2.3.5 (19 August 2021)<br \\/>\\nFix: JS conflict when the first load for Parallax Module.<br \\/>\\nFix: Responsive controls issue for Woo Category List Widget.<br \\/>\\nFix: Removed deprecated Elementor PHP Methods from Widgets.<\\/p>\\n<p>Version: 2.3.4<br \\/>\\nFix: Advanced Accordion and Advanced Tab widgets conflict with the OceanWP theme.<br \\/>\\nFix: Advanced Toggle widget Indicator Global color issues.<br \\/>\\nFix: Unfold widget title alignment issue.<br \\/>\\nFix: Timeline widget content alignment issue.<\\/p>\\n<p>Version: 2.3.3<br \\/>\\nFix: Swiper Slider conflict issues fixed with other themes.<\\/p>\\n<p>Version: 2.3.2<br \\/>\\nTweak: Removed loop from carousel-related widgets.<\\/p>\\n<p>Version: 2.3.1<br \\/>\\nFix: Multiple placeholder image upload issues when importing widget.<br \\/>\\nFix: Background color delay loading issues fixed on Table widget.<br \\/>\\nTweak: Improved W3validation.<br \\/>\\nTweak: TweenMax JS Library updated to the latest version.<br \\/>\\nTweek: Converted widgets slideshow from slick to swiper.<br \\/>\\nTweak: Optimized Images.<br \\/>\\nTweak: Removed Trustpilot widget support.<\\/p>\\n<p>Version: 2.3.0<br \\/>\\nNew: Refined Layout Manager with Tabs, Categories, and Search filters.<br \\/>\\nNew: Modern and Creative Template Kits, Pages, and Section Ready Templates.<br \\/>\\nTweak: Manual cache clear button for Dribbble Feed widget.<br \\/>\\nTweak: Getting access token made easy for Dribbble Feed widget.<br \\/>\\nTweak: Bring unfold widget into viewport while closing the content.<br \\/>\\nFix: Mobile scrolling issues for Hotspot Widget.<br \\/>\\nFix: Undefined variables for Twitter Feed Widget.<br \\/>\\nFix: Limit for Facebook Feed API.<br \\/>\\nFix: Reaction Icons for Facebook Feed.<br \\/>\\nFix: Minor spelling issue.<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Version: 2.2.3 (10 May, 2021)<br \\/>\\nNew: Hover Trigger on Advanced Tab Widget.<br \\/>\\nTweak: Improvements for the Instagram API.<br \\/>\\nTweak: Improvements for the Facebook Feed API.<br \\/>\\nFix: Profile Picture issue for Instagram Widget.<\\/p>\\n<p>Version: 2.2.2 (29 April, 2021)<br \\/>\\nNew: Blog Posts Widget Floating Category.<br \\/>\\nNew: Blog Posts Widget Various Missing Controls.<br \\/>\\nNew: Dribbble Feed User Info &amp; Header.<br \\/>\\nNew: Dribbble Feed Various Missing Controls.<br \\/>\\nNew: Border control to Pinterest feed widget.<br \\/>\\nNew: Follow button icon control to Twitter feed widget.<br \\/>\\nNew: Padding control to Twitter feed widget.<br \\/>\\nNew: Header background control to Twitter feed widget.<br \\/>\\nNew: Share button to Twitter feed widget.<br \\/>\\nTweak: SVG icon to elementskit icon to Twitter feed widget.<br \\/>\\nTweak: Layout five to Behance feed widget.<br \\/>\\nTweak: Replaced deprecated Elementor PHP Methods for Widgets.<br \\/>\\nFix: Category List Widget separator position issue.<br \\/>\\nFix: Google Map Widget static type image issue.<br \\/>\\nFix: Facebook Page Review content alignment issue.<br \\/>\\nFix: Twitter feed read more button.<br \\/>\\nFix: Header Alignment Control for Table Widget.<br \\/>\\nFix: Product Count styles for Woo Category List Widget.<br \\/>\\nFix: Responsive support for Dribbble Feed Widget.<\\/p>\\n<p>Version: 2.2.1 (14-04-2021)<br \\/>\\nFix: Compatibility issues with Elementor 3.2.0.<\\/p>\\n<p>Version: 2.2.0 (02-03-2021)<br \\/>\\nImprove: Minor bug fix and code improvements.<br \\/>\\nImprove: Minor escaping and validation improvements.<\\/p>\\n<p>Version: 2.1.7<br \\/>\\nNew: Image Size control for Gallery Widget.<br \\/>\\nNew: Option to Show\\/Hide Facebook Messenger Dialog Box.<br \\/>\\nNew: Image Comparison support for Advanced Tab Widget.<br \\/>\\nFix: Responsive glitch in Timeline Widget.<\\/p>\\n<p>Version: 2.1.6 (07-02-2021)<br \\/>\\nNew: Introducing Image Swap Widget - show a different image as the user hovers.<\\/p>\\n<p>Version: 2.1.5 (27-01-2021)<br \\/>\\nFix Sticky Module conflict with latest Elementor.<br \\/>\\nFix Slick Library update support for the Latest Elementor update.<br \\/>\\nFix: Woo Category List widget featured style minor CSS grid issue.<\\/p>\\n<p>Version: 2.1.4 (25-01-2021)<br \\/>\\nTweak: Support W3C validation when using Facebook Messenger.<br \\/>\\nFix: Blog Posts Widget default image size changed to provide clear images.<\\/p>\\n<p>Version: 2.1.3 (18-01-2021)<br \\/>\\nFix: Instagram API expiration time extended.<br \\/>\\nFix: Editor live changes support for Advanced Tooltip.<\\/p>\\n<p>Version: 2.1.2 (12-01-2021)<br \\/>\\nFixed Advanced Tooltip js conflict in the Elementor editor.<\\/p>\\n<p>Version: 2.1.1 (10-01-2021)<br \\/>\\nNew: Introducing Advanced Tooltip - add tooltip to any Widget.<br \\/>\\nFix: Improved Advanced Toggle Widget toggler btn.<br \\/>\\nFix: Missing string translations for Table Widget.<br \\/>\\nFix: List style reset for Gallery Filter.<\\/p>\\n<p>Version: 2.1.0 (24-12-2020)<br \\/>\\nNew: Advanced Tab Widget now has the option to enable URL hash routing capability.<br \\/>\\nNew: Option to set popup alignment for Woo Mini-Cart Widget.<br \\/>\\nFix: Popup Modal Widget content editor showing the same content for multiple widgets on the same page.<br \\/>\\nFix: Minor CSS broken issues fixed on Hotspot Widget.<br \\/>\\nFix: Some CSS broken issues fixed on the hotspot<br \\/>\\nFix: added featured category link field \'Woo Category List\' widget<br \\/>\\nFix: Buttons white-space are reset to default.<br \\/>\\nFix: Woo Product Carousel and List Widget compatibility with TwentyTwentyOne Theme.<br \\/>\\nFix: CSS ul and ol list-style weren\'t visible inside widgets.<br \\/>\\nVersion: 2.0.6 (06-12-2020)<br \\/>\\nFix: JS conflict issues fixed with the \'Rank Math\' plugin.<br \\/>\\nImprove: CSS and JS improved.<\\/p>\\n<p>Version: 2.0.5 (01-12-2020)<br \\/>\\nNew: Added \'Popup Modal\' widget.<br \\/>\\nNew: Added new Instagram widget with Instagram official API.<br \\/>\\nNew: Added control for keeping one dot always active.<br \\/>\\nNew: Added Iframe and shortcode support on content.<br \\/>\\nFix: Clicking pointer issues fixed.<br \\/>\\nFix: \\\"Non-property\\\" notice in the Instagram widget.<br \\/>\\nFix: Fixed the line issues when increasing the pointer size.<br \\/>\\nFix: Minor responsive issues fixed.<\\/p>\\n<p>Version: 2.0.3 (16-11-2020)<br \\/>\\nNew: Advanced controls for Conditional Widget.<br \\/>\\nNew: Cross-domain copy-paste module (the long waited feature).<br \\/>\\nNew: Added default color scheme on Facebook Messenger widget.<br \\/>\\nNew: Added Locale on Facebook Messenger widget.<br \\/>\\nFix: Current image missing for Advanced Tab.<br \\/>\\nFix: Ekit button js error when the \\\"add a section\\\" is clicked.<br \\/>\\nTweak: Instagram feed widget.<br \\/>\\nTweak: Improved CSS &amp; JS.<\\/p>\\n<p>Version: 2.0.2<br \\/>\\nFix Facebook feed API.<br \\/>\\nFix Some spelling mistakes.<br \\/>\\nFix: License activation conflicting.<\\/p>\\n<p>Version: 2.0.1<br \\/>\\nFix: Instagram\'s cache issue. Posts were not properly updated.<\\/p>\\n<p>Version: 2.0.0<\\/p>\\n<p>Added: New features: \\\"dribble-feed, facebook-feed, facebook-review, Instagram-feed, twitter-feed, Trustpilot, unfold, yelp, zoom, Unfold\\\"<br data-rich-text-line-break=\\\"true\\\" \\/>Added: Pagination to Blog Posts.<br data-rich-text-line-break=\\\"true\\\" \\/>Added: Import &amp; export system for the WidgetBuilder module.<br data-rich-text-line-break=\\\"true\\\" \\/>Fix: Google Map API Script is enqueueing even it\'s not enabled.<br data-rich-text-line-break=\\\"true\\\" \\/>Fix: Facebook Review Broken issue.<br data-rich-text-line-break=\\\"true\\\" \\/>Fix: HeaderFooter builder compatibility.<\\/p>\\n<p>Version 1.5.8<\\/p>\\n<p>Added Widget builder stable version<\\/p>\\n<p>Version 1.5.7<\\/p>\\n<p>Added elementor 3.0.4 compatibility<\\/p>\\n<p>Version: 1.5.6<\\/p>\\n<p>Added elementor 3.0.1 compatibility<\\/p>\\n<p>Version: 1.5.5<\\/p>\\n<p>- Improved Nav menu widget<br \\/>\\n- Changed ekit menu position in admin<br \\/>\\n- improved post tab widget<\\/p>\\n<p>- Zoom Integration module added<\\/p>\\n<p>Version: 1.5.3<\\/p>\\n<p>Fixed Instagram widgets\\u00a0 issue<\\/p>\\n<p>Version: 1.5.2<\\/p>\\n<p>From version 1.5.2 ElementsKit Pro requires a Lite version of elementskit for better performance and maintenance.\\u00a0 The big update is coming with lots of improvement in the next update :)<\\/p>\\n<p>Elementskit icon rendering issues fixed<br \\/>\\nSocial-media Href duplication issues fixed<br \\/>\\nMinor js issue fixed for Onepage Scroll Module<\\/p>\\n<p>Version 1.5.0<\\/p>\\n<p>Updated Lottie Widget<br \\/>\\nUpdated Woo_Product_List<br \\/>\\nUpdated Woo_Product_Carousel<br \\/>\\nUpdated Nav_Menu<br \\/>\\nUpdated Gallery<\\/p>\\n<p>Added Megamenu width option<\\/p>\\n<p>Version 1.4.8<br \\/>\\nNew: added Lottie Widget<br \\/>\\nNew: added one page-scroll module<br \\/>\\nTweak: Some widgets control modified<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>version 1.4.7<br \\/>\\nFix: mobile sub-menu issues fixed<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Version 1.4.6<br \\/>\\nFix: menu broken fix<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.5<br \\/>\\nFix: megamenu popup issues<br \\/>\\nFix: Url attribute added correctly in all widgets<br \\/>\\nFix: Advanced tab, accordion, off-canvas, etc popup issues fixed<br \\/>\\nFix: Conflict fixed with the latest elementor<br \\/>\\nNew: Onepage scroll module control added<br \\/>\\nRemoved: elementskit.ttf file<\\/p>\\n<p>Version 1.4.4<\\/p>\\n<p>Fix: Responsiveness fixed on woo-product-carousel widgets<br \\/>\\nFix: CSS bug fix on the popup<br \\/>\\nFix: post-list widget meta date<br \\/>\\nFix: Testimonial widgets improved style<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.3<\\/p>\\n<p>Fix: More secure modal<br \\/>\\nFix: Removed container from blog post widgets<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.2<\\/p>\\n<p>Refactor: Timeline widget<br \\/>\\nImproved: Sticky module option<br \\/>\\nFix: Widgets Improved<br \\/>\\nFix: Elementor Compatability Improved<br \\/>\\nFix: Megamenu bug fixed<br \\/>\\nFix: Woo Product list widget mobile Compatability Improved<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<\\/p>\\n<p>Version 1.4.1<br \\/>\\nNew: RTL feature added<br \\/>\\nFix: Latest elementor compatibility<br \\/>\\nFix: WPML compatibility<br \\/>\\nFix: Page list new tab issues<br \\/>\\nFix: google indexing issues<br \\/>\\nFix: IMG linked on image box widget<br \\/>\\nFix: Popup broken issues<br \\/>\\nFix: Fix theme conflict for woo widgets<br \\/>\\nFix: CSS Improved<br \\/>\\nFix: JS Improved<br \\/>\\nVersion 1.4.0<\\/p>\\n<p>Removed unnecessary dynamic tags from widgets.<\\/p>\\n<p>Fix: Compatability issues with elementor latest version<br \\/>\\nFix: Excluding template files from search engines<\\/p>\\n<p>Version 1.3.6<br \\/>\\nDark mode CSS fixed<br \\/>\\nFixed admin data not saving in all deactivate mode<br \\/>\\nFixed woo product img link<br \\/>\\nicon box button hover effect fixed<br \\/>\\nwpml mega-menu fixed<br \\/>\\nupdate Instagram<\\/p>\\n<p>v1.3.5<br \\/>\\nupdate woo carousel responsive issue<br \\/>\\nupdate hotspot responsive issue<br \\/>\\nupdate Instagram one column style push to the responsive breakpoint<br \\/>\\nadd 2 notes on the post grid and post tab<br \\/>\\nfixed header search issues<br \\/>\\nrenamed shuffle-letters js in the config file<\\/p>\\n<p>Version 1.3.4<br \\/>\\nFix: added reset query in the blog post widget<br \\/>\\nFix: added icon from control in the search field<br \\/>\\nFix: Icon box animation fixing<br \\/>\\nFix: ImageLoaded js issues in image comparison and gallery widget<br \\/>\\nFix: JS Improvements<br \\/>\\nFix: CSS Improvements<br \\/>\\nNew: added new URL control in the gallery widget to make each item linkable.<br \\/>\\nNew: added new dashboard design<\\/p>\\n<p>Version 1.3.3<br \\/>\\nUpdate icon-box<br \\/>\\nAdded icon from control in the search field<br \\/>\\nAdded link control in the gallery<br \\/>\\nAdded a control from img comparison,<br \\/>\\nUpdated woo cat-list hover title color<br \\/>\\nUpdate dashboard design<\\/p>\\n<p>1.3.1<br \\/>\\nURL updated<br \\/>\\nMinor bug fixed<\\/p>\\n<p>1.3.0<br \\/>\\nMoved to our site<br \\/>\\nWith Icon update<\\/p>\\n\"]}\";}','no'),(1475,'c1985500b_eael_updated_at','1652933271','no'),(1490,'0f7aad2cc_eael_updated_at','1652933303','no'),(1547,'_transient_timeout_elementor_remote_info_api_data_3.6.5','1652977820','no'),(1548,'_transient_elementor_remote_info_api_data_3.6.5','a:4:{s:9:\"timestamp\";s:10:\"1652933993\";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:64:{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:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-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:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;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:6;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: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: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:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;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:24;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:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;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:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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\"]\";}}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:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(1579,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652935016;s:8:\"response\";a:5:{s:27:\"crowdfundly/crowdfundly.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/crowdfundly\";s:4:\"slug\";s:11:\"crowdfundly\";s:6:\"plugin\";s:27:\"crowdfundly/crowdfundly.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/crowdfundly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/crowdfundly.2.0.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/crowdfundly/assets/icon-256x256.png?rev=2475330\";s:2:\"1x\";s:64:\"https://ps.w.org/crowdfundly/assets/icon-128x128.png?rev=2475330\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/crowdfundly/assets/banner-1544x500.png?rev=2475322\";s:2:\"1x\";s:66:\"https://ps.w.org/crowdfundly/assets/banner-772x250.png?rev=2475322\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":12:{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:6:\"2.5.10\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/elementskit-lite.2.5.10.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:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"7.0\";}s:25:\"htmega-pro/htmega_pro.php\";O:8:\"stdClass\":19:{s:7:\"version\";N;s:4:\"slug\";s:25:\"htmega-pro/htmega_pro.php\";s:11:\"plugin_name\";s:11:\"HT Mega Pro\";s:4:\"name\";s:11:\"HT Mega Pro\";s:11:\"new_version\";s:5:\"1.3.7\";s:8:\"requires\";s:5:\"5.4.1\";s:6:\"tested\";s:5:\"5.9.3\";s:10:\"downloaded\";i:1;s:12:\"last_updated\";s:5:\"5.4.1\";s:3:\"url\";s:0:\"\";s:8:\"sections\";a:2:{s:11:\"description\";s:50:\"<p>Fixed: Elementor Editor mode loading issue.</p>\";s:9:\"changelog\";s:50:\"<p>Fixed: Elementor Editor mode loading issue.</p>\";}s:5:\"icons\";a:1:{s:4:\"high\";s:0:\"\";}s:7:\"banners\";a:1:{s:4:\"high\";s:0:\"\";}s:11:\"banners_rtl\";a:0:{}s:18:\"update_denied_type\";s:1:\"L\";s:15:\"is_downloadable\";b:0;s:10:\"renew_link\";s:0:\"\";s:7:\"package\";s:0:\"\";s:6:\"plugin\";s:25:\"htmega-pro/htmega_pro.php\";}s:27:\"elementskit/elementskit.php\";O:8:\"stdClass\":18:{s:11:\"new_version\";s:5:\"2.6.7\";s:14:\"stable_version\";s:5:\"2.6.7\";s:4:\"name\";s:11:\"ElementsKit\";s:4:\"slug\";s:11:\"elementskit\";s:3:\"url\";s:60:\"https://account.wpmet.com/downloads/elementskit/?changelog=1\";s:12:\"last_updated\";s:19:\"2022-04-27 09:35:37\";s:8:\"homepage\";s:48:\"https://account.wpmet.com/downloads/elementskit/\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";s:8:\"sections\";a:1:{s:9:\"changelog\";s:15216:\"<p>Version: 2.6.7 (27th April 2022)<br />\nAdded: Compatibility with PHP 8.0.<br />\nTweaked: JS , PHP & CSS.</p>\n<p>Version: 2.6.6 (25th April 2022)<br />\nFixed: Advance Tab widget issue.<br />\nFixed: Advance Accordion widget issue.<br />\nFixed: Advance Toggle widget issue.<br />\nFixed: Advance Slider widget issue.</p>\n<p>Version: 2.5.6 (2022-04-18)<br />\nAdded: Language Files.<br />\nAdded: WPMl support for Elementskit template specially for Header &amp; Footer Builder.<br />\nFixed: Escaping issues.<br />\nFixed: Theme support issue.<br />\nFixed: One page scroll issue.<br />\nTweaked: Change some links.</p>\n<p>Version: 2.6.4 (27th March 2022)<br />\nAdded: Subcontinent and Image in Advanced Tooltip widget.<br />\nImproved: Added Advance tooltip subtitle, image, and many controls.<br />\nFixed: Body alignment issue in Table widget.<br />\nFixed: HTML content issue in Advanced Tooltip widget.<br />\nFixed: Instagram widget caption and others issues<br />\nFixed: Elementor 3.6.1 conflicts for deprecation.<br />\nFixed: Elementor responsive control devices compatibility issue<br />\nFixed: Tweak border radius issue of advance tooltip widget<br />\nFixed: Advanced tab issue ( specially with OceanWP theme )</p>\n<p>Version: 2.6.3 (15th February 2022)<br />\nImproved: Parallax doesn\'t work on tablets &amp; mobile devices.<br />\nFixed: Table widget issue ( Editor output style not work &amp; HTML print with image).<br />\nFixed: Video widget issue.<br />\nFixed: Conditional content module has a conflict with the Russian language.</p>\n<p>&nbsp;</p>\n<p>Version: 2.6.2 (30th January 2022)<br />\nAdded: Integrate google sheet inside table widget.<br />\nAdded: WYSIWYG control for table body text.<br />\nFixed: Table widget open function warning.<br />\nFixed: Table widget image issue.</p>\n<p>Version: 2.6.1 (22nd January 2022)<br />\nFixed: Icon missing &amp; replaced font awesome icon with elementor icon.<br />\nFixed: Advanced Tab issue with OceanWP theme.<br />\nTweaked: CSS and JS improved.</p>\n<p>Version: 2.6.0 (9th January 2022)<br />\nAdded: Ajax Loading support for Advanced Tab Widget.<br />\nImproved: Improved data attribute.<br />\nImproved: Update paralax library version(Jaralax).<br />\nImproved: Mini cart &amp; ajax loading support for Advanced Tab.<br />\nFixed: HTML tag does not work into table widget cell text.<br />\nFixed: PHP notice and warning when the username does not exist in the Pinterest feed.<br />\nFixed: Limiting Instagram feeds causes shrinking of columns in Instagram feed.</p>\n<p>Version: 2.5.0 (20th December 2021)<br />\nNew: Hover option added for Vertical Menu Widget.<br />\nNew: Russian language for translation.<br />\nFix: Sticky Offset support for Smooth Scrolling.<br />\nFix: Background Image rendering issue for Parallax Module.<br />\nFix: Table widget missing controls.<br />\nFix: Instagram Feed Fatal Error.<br />\nRemoved: Comment and like count from Instagram feed widget.</p>\n<p>Version: 2.4.1 (2nd December 2021)<br />\nFix: Script defer loading issue for Copy-Paste Module.<br />\nTweak: CSS and JS improved</p>\n<p>Version: 2.4.0 (25th November 2021)<br />\nImproved: Bundled Modules js for avoiding multiple requests to increase the performance.<br />\nTweak: CSS and JS improved</p>\n<p>Version: 2.3.7 (7th November 2021)<br />\nFix: Woo Product Carousel issue.<br />\nFix: Advanced tab nested issue fixed.<br />\nFix: fixed grid compatibility issue.<br />\nTweak: CSS and JS improved</p>\n<p>Version: 2.3.6 (26th September 2021)<br />\nFix: Woo Category widget grid issue with Astra theme<br />\nFix: Woo Product List widget grid issue with Astra theme<br />\nFix: Hover behavior issue for Woo Mini-Cart Widget.<br />\nFix: Responsive support for Chart Widget with large data.<br />\nFix: Horizontal style content alignment for Timeline Widget.</p>\n<p>Version: 2.3.5 (19 August 2021)<br />\nFix: JS conflict when the first load for Parallax Module.<br />\nFix: Responsive controls issue for Woo Category List Widget.<br />\nFix: Removed deprecated Elementor PHP Methods from Widgets.</p>\n<p>Version: 2.3.4<br />\nFix: Advanced Accordion and Advanced Tab widgets conflict with the OceanWP theme.<br />\nFix: Advanced Toggle widget Indicator Global color issues.<br />\nFix: Unfold widget title alignment issue.<br />\nFix: Timeline widget content alignment issue.</p>\n<p>Version: 2.3.3<br />\nFix: Swiper Slider conflict issues fixed with other themes.</p>\n<p>Version: 2.3.2<br />\nTweak: Removed loop from carousel-related widgets.</p>\n<p>Version: 2.3.1<br />\nFix: Multiple placeholder image upload issues when importing widget.<br />\nFix: Background color delay loading issues fixed on Table widget.<br />\nTweak: Improved W3validation.<br />\nTweak: TweenMax JS Library updated to the latest version.<br />\nTweek: Converted widgets slideshow from slick to swiper.<br />\nTweak: Optimized Images.<br />\nTweak: Removed Trustpilot widget support.</p>\n<p>Version: 2.3.0<br />\nNew: Refined Layout Manager with Tabs, Categories, and Search filters.<br />\nNew: Modern and Creative Template Kits, Pages, and Section Ready Templates.<br />\nTweak: Manual cache clear button for Dribbble Feed widget.<br />\nTweak: Getting access token made easy for Dribbble Feed widget.<br />\nTweak: Bring unfold widget into viewport while closing the content.<br />\nFix: Mobile scrolling issues for Hotspot Widget.<br />\nFix: Undefined variables for Twitter Feed Widget.<br />\nFix: Limit for Facebook Feed API.<br />\nFix: Reaction Icons for Facebook Feed.<br />\nFix: Minor spelling issue.</p>\n<p>&nbsp;</p>\n<p>Version: 2.2.3 (10 May, 2021)<br />\nNew: Hover Trigger on Advanced Tab Widget.<br />\nTweak: Improvements for the Instagram API.<br />\nTweak: Improvements for the Facebook Feed API.<br />\nFix: Profile Picture issue for Instagram Widget.</p>\n<p>Version: 2.2.2 (29 April, 2021)<br />\nNew: Blog Posts Widget Floating Category.<br />\nNew: Blog Posts Widget Various Missing Controls.<br />\nNew: Dribbble Feed User Info &amp; Header.<br />\nNew: Dribbble Feed Various Missing Controls.<br />\nNew: Border control to Pinterest feed widget.<br />\nNew: Follow button icon control to Twitter feed widget.<br />\nNew: Padding control to Twitter feed widget.<br />\nNew: Header background control to Twitter feed widget.<br />\nNew: Share button to Twitter feed widget.<br />\nTweak: SVG icon to elementskit icon to Twitter feed widget.<br />\nTweak: Layout five to Behance feed widget.<br />\nTweak: Replaced deprecated Elementor PHP Methods for Widgets.<br />\nFix: Category List Widget separator position issue.<br />\nFix: Google Map Widget static type image issue.<br />\nFix: Facebook Page Review content alignment issue.<br />\nFix: Twitter feed read more button.<br />\nFix: Header Alignment Control for Table Widget.<br />\nFix: Product Count styles for Woo Category List Widget.<br />\nFix: Responsive support for Dribbble Feed Widget.</p>\n<p>Version: 2.2.1 (14-04-2021)<br />\nFix: Compatibility issues with Elementor 3.2.0.</p>\n<p>Version: 2.2.0 (02-03-2021)<br />\nImprove: Minor bug fix and code improvements.<br />\nImprove: Minor escaping and validation improvements.</p>\n<p>Version: 2.1.7<br />\nNew: Image Size control for Gallery Widget.<br />\nNew: Option to Show/Hide Facebook Messenger Dialog Box.<br />\nNew: Image Comparison support for Advanced Tab Widget.<br />\nFix: Responsive glitch in Timeline Widget.</p>\n<p>Version: 2.1.6 (07-02-2021)<br />\nNew: Introducing Image Swap Widget - show a different image as the user hovers.</p>\n<p>Version: 2.1.5 (27-01-2021)<br />\nFix Sticky Module conflict with latest Elementor.<br />\nFix Slick Library update support for the Latest Elementor update.<br />\nFix: Woo Category List widget featured style minor CSS grid issue.</p>\n<p>Version: 2.1.4 (25-01-2021)<br />\nTweak: Support W3C validation when using Facebook Messenger.<br />\nFix: Blog Posts Widget default image size changed to provide clear images.</p>\n<p>Version: 2.1.3 (18-01-2021)<br />\nFix: Instagram API expiration time extended.<br />\nFix: Editor live changes support for Advanced Tooltip.</p>\n<p>Version: 2.1.2 (12-01-2021)<br />\nFixed Advanced Tooltip js conflict in the Elementor editor.</p>\n<p>Version: 2.1.1 (10-01-2021)<br />\nNew: Introducing Advanced Tooltip - add tooltip to any Widget.<br />\nFix: Improved Advanced Toggle Widget toggler btn.<br />\nFix: Missing string translations for Table Widget.<br />\nFix: List style reset for Gallery Filter.</p>\n<p>Version: 2.1.0 (24-12-2020)<br />\nNew: Advanced Tab Widget now has the option to enable URL hash routing capability.<br />\nNew: Option to set popup alignment for Woo Mini-Cart Widget.<br />\nFix: Popup Modal Widget content editor showing the same content for multiple widgets on the same page.<br />\nFix: Minor CSS broken issues fixed on Hotspot Widget.<br />\nFix: Some CSS broken issues fixed on the hotspot<br />\nFix: added featured category link field \'Woo Category List\' widget<br />\nFix: Buttons white-space are reset to default.<br />\nFix: Woo Product Carousel and List Widget compatibility with TwentyTwentyOne Theme.<br />\nFix: CSS ul and ol list-style weren\'t visible inside widgets.<br />\nVersion: 2.0.6 (06-12-2020)<br />\nFix: JS conflict issues fixed with the \'Rank Math\' plugin.<br />\nImprove: CSS and JS improved.</p>\n<p>Version: 2.0.5 (01-12-2020)<br />\nNew: Added \'Popup Modal\' widget.<br />\nNew: Added new Instagram widget with Instagram official API.<br />\nNew: Added control for keeping one dot always active.<br />\nNew: Added Iframe and shortcode support on content.<br />\nFix: Clicking pointer issues fixed.<br />\nFix: \"Non-property\" notice in the Instagram widget.<br />\nFix: Fixed the line issues when increasing the pointer size.<br />\nFix: Minor responsive issues fixed.</p>\n<p>Version: 2.0.3 (16-11-2020)<br />\nNew: Advanced controls for Conditional Widget.<br />\nNew: Cross-domain copy-paste module (the long waited feature).<br />\nNew: Added default color scheme on Facebook Messenger widget.<br />\nNew: Added Locale on Facebook Messenger widget.<br />\nFix: Current image missing for Advanced Tab.<br />\nFix: Ekit button js error when the \"add a section\" is clicked.<br />\nTweak: Instagram feed widget.<br />\nTweak: Improved CSS &amp; JS.</p>\n<p>Version: 2.0.2<br />\nFix Facebook feed API.<br />\nFix Some spelling mistakes.<br />\nFix: License activation conflicting.</p>\n<p>Version: 2.0.1<br />\nFix: Instagram\'s cache issue. Posts were not properly updated.</p>\n<p>Version: 2.0.0</p>\n<p>Added: New features: \"dribble-feed, facebook-feed, facebook-review, Instagram-feed, twitter-feed, Trustpilot, unfold, yelp, zoom, Unfold\"<br data-rich-text-line-break=\"true\" />Added: Pagination to Blog Posts.<br data-rich-text-line-break=\"true\" />Added: Import &amp; export system for the WidgetBuilder module.<br data-rich-text-line-break=\"true\" />Fix: Google Map API Script is enqueueing even it\'s not enabled.<br data-rich-text-line-break=\"true\" />Fix: Facebook Review Broken issue.<br data-rich-text-line-break=\"true\" />Fix: HeaderFooter builder compatibility.</p>\n<p>Version 1.5.8</p>\n<p>Added Widget builder stable version</p>\n<p>Version 1.5.7</p>\n<p>Added elementor 3.0.4 compatibility</p>\n<p>Version: 1.5.6</p>\n<p>Added elementor 3.0.1 compatibility</p>\n<p>Version: 1.5.5</p>\n<p>- Improved Nav menu widget<br />\n- Changed ekit menu position in admin<br />\n- improved post tab widget</p>\n<p>- Zoom Integration module added</p>\n<p>Version: 1.5.3</p>\n<p>Fixed Instagram widgets  issue</p>\n<p>Version: 1.5.2</p>\n<p>From version 1.5.2 ElementsKit Pro requires a Lite version of elementskit for better performance and maintenance.  The big update is coming with lots of improvement in the next update :)</p>\n<p>Elementskit icon rendering issues fixed<br />\nSocial-media Href duplication issues fixed<br />\nMinor js issue fixed for Onepage Scroll Module</p>\n<p>Version 1.5.0</p>\n<p>Updated Lottie Widget<br />\nUpdated Woo_Product_List<br />\nUpdated Woo_Product_Carousel<br />\nUpdated Nav_Menu<br />\nUpdated Gallery</p>\n<p>Added Megamenu width option</p>\n<p>Version 1.4.8<br />\nNew: added Lottie Widget<br />\nNew: added one page-scroll module<br />\nTweak: Some widgets control modified<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>version 1.4.7<br />\nFix: mobile sub-menu issues fixed<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>&nbsp;</p>\n<p>Version 1.4.6<br />\nFix: menu broken fix<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.5<br />\nFix: megamenu popup issues<br />\nFix: Url attribute added correctly in all widgets<br />\nFix: Advanced tab, accordion, off-canvas, etc popup issues fixed<br />\nFix: Conflict fixed with the latest elementor<br />\nNew: Onepage scroll module control added<br />\nRemoved: elementskit.ttf file</p>\n<p>Version 1.4.4</p>\n<p>Fix: Responsiveness fixed on woo-product-carousel widgets<br />\nFix: CSS bug fix on the popup<br />\nFix: post-list widget meta date<br />\nFix: Testimonial widgets improved style<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.3</p>\n<p>Fix: More secure modal<br />\nFix: Removed container from blog post widgets<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.2</p>\n<p>Refactor: Timeline widget<br />\nImproved: Sticky module option<br />\nFix: Widgets Improved<br />\nFix: Elementor Compatability Improved<br />\nFix: Megamenu bug fixed<br />\nFix: Woo Product list widget mobile Compatability Improved<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.1<br />\nNew: RTL feature added<br />\nFix: Latest elementor compatibility<br />\nFix: WPML compatibility<br />\nFix: Page list new tab issues<br />\nFix: google indexing issues<br />\nFix: IMG linked on image box widget<br />\nFix: Popup broken issues<br />\nFix: Fix theme conflict for woo widgets<br />\nFix: CSS Improved<br />\nFix: JS Improved<br />\nVersion 1.4.0</p>\n<p>Removed unnecessary dynamic tags from widgets.</p>\n<p>Fix: Compatability issues with elementor latest version<br />\nFix: Excluding template files from search engines</p>\n<p>Version 1.3.6<br />\nDark mode CSS fixed<br />\nFixed admin data not saving in all deactivate mode<br />\nFixed woo product img link<br />\nicon box button hover effect fixed<br />\nwpml mega-menu fixed<br />\nupdate Instagram</p>\n<p>v1.3.5<br />\nupdate woo carousel responsive issue<br />\nupdate hotspot responsive issue<br />\nupdate Instagram one column style push to the responsive breakpoint<br />\nadd 2 notes on the post grid and post tab<br />\nfixed header search issues<br />\nrenamed shuffle-letters js in the config file</p>\n<p>Version 1.3.4<br />\nFix: added reset query in the blog post widget<br />\nFix: added icon from control in the search field<br />\nFix: Icon box animation fixing<br />\nFix: ImageLoaded js issues in image comparison and gallery widget<br />\nFix: JS Improvements<br />\nFix: CSS Improvements<br />\nNew: added new URL control in the gallery widget to make each item linkable.<br />\nNew: added new dashboard design</p>\n<p>Version 1.3.3<br />\nUpdate icon-box<br />\nAdded icon from control in the search field<br />\nAdded link control in the gallery<br />\nAdded a control from img comparison,<br />\nUpdated woo cat-list hover title color<br />\nUpdate dashboard design</p>\n<p>1.3.1<br />\nURL updated<br />\nMinor bug fixed</p>\n<p>1.3.0<br />\nMoved to our site<br />\nWith Icon update</p>\n\";}s:7:\"banners\";a:2:{s:4:\"high\";s:76:\"https://account.wpmet.com/wp-content/uploads/edd/2019/11/banner-1544x500.png\";s:3:\"low\";s:75:\"https://account.wpmet.com/wp-content/uploads/edd/2019/11/banner-772x250.png\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:72:\"https://account.wpmet.com/wp-content/uploads/edd/2021/04/ElementsKit.jpg\";s:2:\"2x\";s:72:\"https://account.wpmet.com/wp-content/uploads/edd/2021/04/ElementsKit.jpg\";}s:3:\"msg\";s:33:\"No license key has been provided.\";s:10:\"stable_tag\";s:0:\"\";s:7:\"license\";s:0:\"\";s:6:\"tested\";s:0:\"\";s:9:\"changelog\";a:1:{i:0;s:15216:\"<p>Version: 2.6.7 (27th April 2022)<br />\nAdded: Compatibility with PHP 8.0.<br />\nTweaked: JS , PHP & CSS.</p>\n<p>Version: 2.6.6 (25th April 2022)<br />\nFixed: Advance Tab widget issue.<br />\nFixed: Advance Accordion widget issue.<br />\nFixed: Advance Toggle widget issue.<br />\nFixed: Advance Slider widget issue.</p>\n<p>Version: 2.5.6 (2022-04-18)<br />\nAdded: Language Files.<br />\nAdded: WPMl support for Elementskit template specially for Header &amp; Footer Builder.<br />\nFixed: Escaping issues.<br />\nFixed: Theme support issue.<br />\nFixed: One page scroll issue.<br />\nTweaked: Change some links.</p>\n<p>Version: 2.6.4 (27th March 2022)<br />\nAdded: Subcontinent and Image in Advanced Tooltip widget.<br />\nImproved: Added Advance tooltip subtitle, image, and many controls.<br />\nFixed: Body alignment issue in Table widget.<br />\nFixed: HTML content issue in Advanced Tooltip widget.<br />\nFixed: Instagram widget caption and others issues<br />\nFixed: Elementor 3.6.1 conflicts for deprecation.<br />\nFixed: Elementor responsive control devices compatibility issue<br />\nFixed: Tweak border radius issue of advance tooltip widget<br />\nFixed: Advanced tab issue ( specially with OceanWP theme )</p>\n<p>Version: 2.6.3 (15th February 2022)<br />\nImproved: Parallax doesn\'t work on tablets &amp; mobile devices.<br />\nFixed: Table widget issue ( Editor output style not work &amp; HTML print with image).<br />\nFixed: Video widget issue.<br />\nFixed: Conditional content module has a conflict with the Russian language.</p>\n<p>&nbsp;</p>\n<p>Version: 2.6.2 (30th January 2022)<br />\nAdded: Integrate google sheet inside table widget.<br />\nAdded: WYSIWYG control for table body text.<br />\nFixed: Table widget open function warning.<br />\nFixed: Table widget image issue.</p>\n<p>Version: 2.6.1 (22nd January 2022)<br />\nFixed: Icon missing &amp; replaced font awesome icon with elementor icon.<br />\nFixed: Advanced Tab issue with OceanWP theme.<br />\nTweaked: CSS and JS improved.</p>\n<p>Version: 2.6.0 (9th January 2022)<br />\nAdded: Ajax Loading support for Advanced Tab Widget.<br />\nImproved: Improved data attribute.<br />\nImproved: Update paralax library version(Jaralax).<br />\nImproved: Mini cart &amp; ajax loading support for Advanced Tab.<br />\nFixed: HTML tag does not work into table widget cell text.<br />\nFixed: PHP notice and warning when the username does not exist in the Pinterest feed.<br />\nFixed: Limiting Instagram feeds causes shrinking of columns in Instagram feed.</p>\n<p>Version: 2.5.0 (20th December 2021)<br />\nNew: Hover option added for Vertical Menu Widget.<br />\nNew: Russian language for translation.<br />\nFix: Sticky Offset support for Smooth Scrolling.<br />\nFix: Background Image rendering issue for Parallax Module.<br />\nFix: Table widget missing controls.<br />\nFix: Instagram Feed Fatal Error.<br />\nRemoved: Comment and like count from Instagram feed widget.</p>\n<p>Version: 2.4.1 (2nd December 2021)<br />\nFix: Script defer loading issue for Copy-Paste Module.<br />\nTweak: CSS and JS improved</p>\n<p>Version: 2.4.0 (25th November 2021)<br />\nImproved: Bundled Modules js for avoiding multiple requests to increase the performance.<br />\nTweak: CSS and JS improved</p>\n<p>Version: 2.3.7 (7th November 2021)<br />\nFix: Woo Product Carousel issue.<br />\nFix: Advanced tab nested issue fixed.<br />\nFix: fixed grid compatibility issue.<br />\nTweak: CSS and JS improved</p>\n<p>Version: 2.3.6 (26th September 2021)<br />\nFix: Woo Category widget grid issue with Astra theme<br />\nFix: Woo Product List widget grid issue with Astra theme<br />\nFix: Hover behavior issue for Woo Mini-Cart Widget.<br />\nFix: Responsive support for Chart Widget with large data.<br />\nFix: Horizontal style content alignment for Timeline Widget.</p>\n<p>Version: 2.3.5 (19 August 2021)<br />\nFix: JS conflict when the first load for Parallax Module.<br />\nFix: Responsive controls issue for Woo Category List Widget.<br />\nFix: Removed deprecated Elementor PHP Methods from Widgets.</p>\n<p>Version: 2.3.4<br />\nFix: Advanced Accordion and Advanced Tab widgets conflict with the OceanWP theme.<br />\nFix: Advanced Toggle widget Indicator Global color issues.<br />\nFix: Unfold widget title alignment issue.<br />\nFix: Timeline widget content alignment issue.</p>\n<p>Version: 2.3.3<br />\nFix: Swiper Slider conflict issues fixed with other themes.</p>\n<p>Version: 2.3.2<br />\nTweak: Removed loop from carousel-related widgets.</p>\n<p>Version: 2.3.1<br />\nFix: Multiple placeholder image upload issues when importing widget.<br />\nFix: Background color delay loading issues fixed on Table widget.<br />\nTweak: Improved W3validation.<br />\nTweak: TweenMax JS Library updated to the latest version.<br />\nTweek: Converted widgets slideshow from slick to swiper.<br />\nTweak: Optimized Images.<br />\nTweak: Removed Trustpilot widget support.</p>\n<p>Version: 2.3.0<br />\nNew: Refined Layout Manager with Tabs, Categories, and Search filters.<br />\nNew: Modern and Creative Template Kits, Pages, and Section Ready Templates.<br />\nTweak: Manual cache clear button for Dribbble Feed widget.<br />\nTweak: Getting access token made easy for Dribbble Feed widget.<br />\nTweak: Bring unfold widget into viewport while closing the content.<br />\nFix: Mobile scrolling issues for Hotspot Widget.<br />\nFix: Undefined variables for Twitter Feed Widget.<br />\nFix: Limit for Facebook Feed API.<br />\nFix: Reaction Icons for Facebook Feed.<br />\nFix: Minor spelling issue.</p>\n<p>&nbsp;</p>\n<p>Version: 2.2.3 (10 May, 2021)<br />\nNew: Hover Trigger on Advanced Tab Widget.<br />\nTweak: Improvements for the Instagram API.<br />\nTweak: Improvements for the Facebook Feed API.<br />\nFix: Profile Picture issue for Instagram Widget.</p>\n<p>Version: 2.2.2 (29 April, 2021)<br />\nNew: Blog Posts Widget Floating Category.<br />\nNew: Blog Posts Widget Various Missing Controls.<br />\nNew: Dribbble Feed User Info &amp; Header.<br />\nNew: Dribbble Feed Various Missing Controls.<br />\nNew: Border control to Pinterest feed widget.<br />\nNew: Follow button icon control to Twitter feed widget.<br />\nNew: Padding control to Twitter feed widget.<br />\nNew: Header background control to Twitter feed widget.<br />\nNew: Share button to Twitter feed widget.<br />\nTweak: SVG icon to elementskit icon to Twitter feed widget.<br />\nTweak: Layout five to Behance feed widget.<br />\nTweak: Replaced deprecated Elementor PHP Methods for Widgets.<br />\nFix: Category List Widget separator position issue.<br />\nFix: Google Map Widget static type image issue.<br />\nFix: Facebook Page Review content alignment issue.<br />\nFix: Twitter feed read more button.<br />\nFix: Header Alignment Control for Table Widget.<br />\nFix: Product Count styles for Woo Category List Widget.<br />\nFix: Responsive support for Dribbble Feed Widget.</p>\n<p>Version: 2.2.1 (14-04-2021)<br />\nFix: Compatibility issues with Elementor 3.2.0.</p>\n<p>Version: 2.2.0 (02-03-2021)<br />\nImprove: Minor bug fix and code improvements.<br />\nImprove: Minor escaping and validation improvements.</p>\n<p>Version: 2.1.7<br />\nNew: Image Size control for Gallery Widget.<br />\nNew: Option to Show/Hide Facebook Messenger Dialog Box.<br />\nNew: Image Comparison support for Advanced Tab Widget.<br />\nFix: Responsive glitch in Timeline Widget.</p>\n<p>Version: 2.1.6 (07-02-2021)<br />\nNew: Introducing Image Swap Widget - show a different image as the user hovers.</p>\n<p>Version: 2.1.5 (27-01-2021)<br />\nFix Sticky Module conflict with latest Elementor.<br />\nFix Slick Library update support for the Latest Elementor update.<br />\nFix: Woo Category List widget featured style minor CSS grid issue.</p>\n<p>Version: 2.1.4 (25-01-2021)<br />\nTweak: Support W3C validation when using Facebook Messenger.<br />\nFix: Blog Posts Widget default image size changed to provide clear images.</p>\n<p>Version: 2.1.3 (18-01-2021)<br />\nFix: Instagram API expiration time extended.<br />\nFix: Editor live changes support for Advanced Tooltip.</p>\n<p>Version: 2.1.2 (12-01-2021)<br />\nFixed Advanced Tooltip js conflict in the Elementor editor.</p>\n<p>Version: 2.1.1 (10-01-2021)<br />\nNew: Introducing Advanced Tooltip - add tooltip to any Widget.<br />\nFix: Improved Advanced Toggle Widget toggler btn.<br />\nFix: Missing string translations for Table Widget.<br />\nFix: List style reset for Gallery Filter.</p>\n<p>Version: 2.1.0 (24-12-2020)<br />\nNew: Advanced Tab Widget now has the option to enable URL hash routing capability.<br />\nNew: Option to set popup alignment for Woo Mini-Cart Widget.<br />\nFix: Popup Modal Widget content editor showing the same content for multiple widgets on the same page.<br />\nFix: Minor CSS broken issues fixed on Hotspot Widget.<br />\nFix: Some CSS broken issues fixed on the hotspot<br />\nFix: added featured category link field \'Woo Category List\' widget<br />\nFix: Buttons white-space are reset to default.<br />\nFix: Woo Product Carousel and List Widget compatibility with TwentyTwentyOne Theme.<br />\nFix: CSS ul and ol list-style weren\'t visible inside widgets.<br />\nVersion: 2.0.6 (06-12-2020)<br />\nFix: JS conflict issues fixed with the \'Rank Math\' plugin.<br />\nImprove: CSS and JS improved.</p>\n<p>Version: 2.0.5 (01-12-2020)<br />\nNew: Added \'Popup Modal\' widget.<br />\nNew: Added new Instagram widget with Instagram official API.<br />\nNew: Added control for keeping one dot always active.<br />\nNew: Added Iframe and shortcode support on content.<br />\nFix: Clicking pointer issues fixed.<br />\nFix: \"Non-property\" notice in the Instagram widget.<br />\nFix: Fixed the line issues when increasing the pointer size.<br />\nFix: Minor responsive issues fixed.</p>\n<p>Version: 2.0.3 (16-11-2020)<br />\nNew: Advanced controls for Conditional Widget.<br />\nNew: Cross-domain copy-paste module (the long waited feature).<br />\nNew: Added default color scheme on Facebook Messenger widget.<br />\nNew: Added Locale on Facebook Messenger widget.<br />\nFix: Current image missing for Advanced Tab.<br />\nFix: Ekit button js error when the \"add a section\" is clicked.<br />\nTweak: Instagram feed widget.<br />\nTweak: Improved CSS &amp; JS.</p>\n<p>Version: 2.0.2<br />\nFix Facebook feed API.<br />\nFix Some spelling mistakes.<br />\nFix: License activation conflicting.</p>\n<p>Version: 2.0.1<br />\nFix: Instagram\'s cache issue. Posts were not properly updated.</p>\n<p>Version: 2.0.0</p>\n<p>Added: New features: \"dribble-feed, facebook-feed, facebook-review, Instagram-feed, twitter-feed, Trustpilot, unfold, yelp, zoom, Unfold\"<br data-rich-text-line-break=\"true\" />Added: Pagination to Blog Posts.<br data-rich-text-line-break=\"true\" />Added: Import &amp; export system for the WidgetBuilder module.<br data-rich-text-line-break=\"true\" />Fix: Google Map API Script is enqueueing even it\'s not enabled.<br data-rich-text-line-break=\"true\" />Fix: Facebook Review Broken issue.<br data-rich-text-line-break=\"true\" />Fix: HeaderFooter builder compatibility.</p>\n<p>Version 1.5.8</p>\n<p>Added Widget builder stable version</p>\n<p>Version 1.5.7</p>\n<p>Added elementor 3.0.4 compatibility</p>\n<p>Version: 1.5.6</p>\n<p>Added elementor 3.0.1 compatibility</p>\n<p>Version: 1.5.5</p>\n<p>- Improved Nav menu widget<br />\n- Changed ekit menu position in admin<br />\n- improved post tab widget</p>\n<p>- Zoom Integration module added</p>\n<p>Version: 1.5.3</p>\n<p>Fixed Instagram widgets  issue</p>\n<p>Version: 1.5.2</p>\n<p>From version 1.5.2 ElementsKit Pro requires a Lite version of elementskit for better performance and maintenance.  The big update is coming with lots of improvement in the next update :)</p>\n<p>Elementskit icon rendering issues fixed<br />\nSocial-media Href duplication issues fixed<br />\nMinor js issue fixed for Onepage Scroll Module</p>\n<p>Version 1.5.0</p>\n<p>Updated Lottie Widget<br />\nUpdated Woo_Product_List<br />\nUpdated Woo_Product_Carousel<br />\nUpdated Nav_Menu<br />\nUpdated Gallery</p>\n<p>Added Megamenu width option</p>\n<p>Version 1.4.8<br />\nNew: added Lottie Widget<br />\nNew: added one page-scroll module<br />\nTweak: Some widgets control modified<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>version 1.4.7<br />\nFix: mobile sub-menu issues fixed<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>&nbsp;</p>\n<p>Version 1.4.6<br />\nFix: menu broken fix<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.5<br />\nFix: megamenu popup issues<br />\nFix: Url attribute added correctly in all widgets<br />\nFix: Advanced tab, accordion, off-canvas, etc popup issues fixed<br />\nFix: Conflict fixed with the latest elementor<br />\nNew: Onepage scroll module control added<br />\nRemoved: elementskit.ttf file</p>\n<p>Version 1.4.4</p>\n<p>Fix: Responsiveness fixed on woo-product-carousel widgets<br />\nFix: CSS bug fix on the popup<br />\nFix: post-list widget meta date<br />\nFix: Testimonial widgets improved style<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.3</p>\n<p>Fix: More secure modal<br />\nFix: Removed container from blog post widgets<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.2</p>\n<p>Refactor: Timeline widget<br />\nImproved: Sticky module option<br />\nFix: Widgets Improved<br />\nFix: Elementor Compatability Improved<br />\nFix: Megamenu bug fixed<br />\nFix: Woo Product list widget mobile Compatability Improved<br />\nFix: CSS Improved<br />\nFix: JS Improved</p>\n<p>Version 1.4.1<br />\nNew: RTL feature added<br />\nFix: Latest elementor compatibility<br />\nFix: WPML compatibility<br />\nFix: Page list new tab issues<br />\nFix: google indexing issues<br />\nFix: IMG linked on image box widget<br />\nFix: Popup broken issues<br />\nFix: Fix theme conflict for woo widgets<br />\nFix: CSS Improved<br />\nFix: JS Improved<br />\nVersion 1.4.0</p>\n<p>Removed unnecessary dynamic tags from widgets.</p>\n<p>Fix: Compatability issues with elementor latest version<br />\nFix: Excluding template files from search engines</p>\n<p>Version 1.3.6<br />\nDark mode CSS fixed<br />\nFixed admin data not saving in all deactivate mode<br />\nFixed woo product img link<br />\nicon box button hover effect fixed<br />\nwpml mega-menu fixed<br />\nupdate Instagram</p>\n<p>v1.3.5<br />\nupdate woo carousel responsive issue<br />\nupdate hotspot responsive issue<br />\nupdate Instagram one column style push to the responsive breakpoint<br />\nadd 2 notes on the post grid and post tab<br />\nfixed header search issues<br />\nrenamed shuffle-letters js in the config file</p>\n<p>Version 1.3.4<br />\nFix: added reset query in the blog post widget<br />\nFix: added icon from control in the search field<br />\nFix: Icon box animation fixing<br />\nFix: ImageLoaded js issues in image comparison and gallery widget<br />\nFix: JS Improvements<br />\nFix: CSS Improvements<br />\nNew: added new URL control in the gallery widget to make each item linkable.<br />\nNew: added new dashboard design</p>\n<p>Version 1.3.3<br />\nUpdate icon-box<br />\nAdded icon from control in the search field<br />\nAdded link control in the gallery<br />\nAdded a control from img comparison,<br />\nUpdated woo cat-list hover title color<br />\nUpdate dashboard design</p>\n<p>1.3.1<br />\nURL updated<br />\nMinor bug fixed</p>\n<p>1.3.0<br />\nMoved to our site<br />\nWith Icon update</p>\n\";}s:6:\"plugin\";s:27:\"elementskit/elementskit.php\";}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":16:{s:14:\"stable_version\";s:5:\"3.7.1\";s:12:\"last_updated\";s:19:\"2022-05-10 14:03:37\";s:11:\"new_version\";s:5:\"3.7.1\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:182:\"https://plugin-downloads.elementor.com/v1/plugin/package_download/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MToxMTYyNWVlODA0OWM2NjcxODdmMTkwZmFkM2RjMjAyYzpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbjow\";s:13:\"download_link\";s:182:\"https://plugin-downloads.elementor.com/v1/plugin/package_download/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MToxMTYyNWVlODA0OWM2NjcxODdmMTkwZmFkM2RjMjAyYzpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbjow\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:191:\"https://plugin-downloads.elementor.com/v1/plugin/previous_download/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MTozLjcuMDo5NWM5NjgzYmNhZTI3YzQ5YmFkZDYwZDU3Yjg2M2YyZjpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbg==\";s:13:\"download_link\";s:191:\"https://plugin-downloads.elementor.com/v1/plugin/previous_download/MTY1MzAxOTQ4ODphY3RpdmF0ZWQ6MTozLjcuMDo5NWM5NjgzYmNhZTI3YzQ5YmFkZDYwZDU3Yjg2M2YyZjpodHRwc0AvL2RlbW93ZWJsaW5rcy5pbi9hYWhhbg==\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}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:5:\"3.6.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";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=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:35:\"envato-elements/envato-elements.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/envato-elements\";s:4:\"slug\";s:15:\"envato-elements\";s:6:\"plugin\";s:35:\"envato-elements/envato-elements.php\";s:11:\"new_version\";s:6:\"2.0.11\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/envato-elements/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/envato-elements.2.0.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/envato-elements/assets/icon-256x256.png?rev=2065415\";s:2:\"1x\";s:68:\"https://ps.w.org/envato-elements/assets/icon-128x128.png?rev=2065415\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/envato-elements/assets/banner-1544x500.png?rev=2303035\";s:2:\"1x\";s:70:\"https://ps.w.org/envato-elements/assets/banner-772x250.png?rev=2303035\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:5:\"5.1.2\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=2598498\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=2598498\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.gif?rev=2708510\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.gif?rev=2708510\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:13:\"give/give.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"w.org/plugins/give\";s:4:\"slug\";s:4:\"give\";s:6:\"plugin\";s:13:\"give/give.php\";s:11:\"new_version\";s:6:\"2.20.0\";s:3:\"url\";s:35:\"https://wordpress.org/plugins/give/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/give.2.20.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:57:\"https://ps.w.org/give/assets/icon-256x256.jpg?rev=2659032\";s:2:\"1x\";s:57:\"https://ps.w.org/give/assets/icon-128x128.jpg?rev=2659032\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/give/assets/banner-1544x500.jpg?rev=2644802\";s:2:\"1x\";s:59:\"https://ps.w.org/give/assets/banner-772x250.jpg?rev=2644802\";}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.2.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:49:\"ht-mega-for-elementor/htmega_addons_elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/ht-mega-for-elementor\";s:4:\"slug\";s:21:\"ht-mega-for-elementor\";s:6:\"plugin\";s:49:\"ht-mega-for-elementor/htmega_addons_elementor.php\";s:11:\"new_version\";s:5:\"1.8.7\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/ht-mega-for-elementor/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/ht-mega-for-elementor.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/ht-mega-for-elementor/assets/icon-128x128.png?rev=2062798\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/ht-mega-for-elementor/assets/banner-772x250.png?rev=2062798\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}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.4.2\";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.4.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:70:\"https://ps.w.org/jeg-elementor-kit/assets/icon-256x256.png?rev=2587455\";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:\"2.1.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/metform/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/metform.2.1.6.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:\"4.8\";}s:19:\"stratum/stratum.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/stratum\";s:4:\"slug\";s:7:\"stratum\";s:6:\"plugin\";s:19:\"stratum/stratum.php\";s:11:\"new_version\";s:6:\"1.3.13\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/stratum/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/stratum.1.3.13.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/stratum/assets/icon.svg?rev=2337896\";s:3:\"svg\";s:52:\"https://ps.w.org/stratum/assets/icon.svg?rev=2337896\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/stratum/assets/banner-1544x500.png?rev=2709172\";s:2:\"1x\";s:62:\"https://ps.w.org/stratum/assets/banner-772x250.png?rev=2709172\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:75:\"timeline-widget-addon-for-elementor/timeline-widget-addon-for-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/timeline-widget-addon-for-elementor\";s:4:\"slug\";s:35:\"timeline-widget-addon-for-elementor\";s:6:\"plugin\";s:75:\"timeline-widget-addon-for-elementor/timeline-widget-addon-for-elementor.php\";s:11:\"new_version\";s:5:\"1.3.5\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/timeline-widget-addon-for-elementor/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/timeline-widget-addon-for-elementor.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/icon-256x256.png?rev=2336624\";s:2:\"1x\";s:88:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/icon-128x128.png?rev=2336624\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/banner-1544x500.png?rev=2336624\";s:2:\"1x\";s:90:\"https://ps.w.org/timeline-widget-addon-for-elementor/assets/banner-772x250.png?rev=2336624\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:16:{s:19:\"akismet/akismet.php\";s:5:\"4.2.3\";s:27:\"crowdfundly/crowdfundly.php\";s:5:\"2.0.3\";s:23:\"elementor/elementor.php\";s:5:\"3.6.5\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"3.7.1\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"2.5.9\";s:27:\"elementskit/elementskit.php\";s:5:\"2.3.6\";s:35:\"envato-elements/envato-elements.php\";s:6:\"2.0.11\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:5:\"5.1.2\";s:13:\"give/give.php\";s:6:\"2.20.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:49:\"ht-mega-for-elementor/htmega_addons_elementor.php\";s:5:\"1.8.7\";s:25:\"htmega-pro/htmega_pro.php\";s:5:\"1.2.9\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:5:\"2.4.2\";s:19:\"metform/metform.php\";s:5:\"2.1.6\";s:19:\"stratum/stratum.php\";s:6:\"1.3.13\";s:75:\"timeline-widget-addon-for-elementor/timeline-widget-addon-for-elementor.php\";s:5:\"1.3.5\";}}','no'),(1773,'6999fbcf5_eael_elements','a:0:{}','no'),(1774,'6999fbcf5_eael_custom_js','','no'),(2319,'c076ae721_eael_elements','a:0:{}','no'),(2320,'c076ae721_eael_custom_js','','no'),(2321,'c076ae721_eael_updated_at','1652939494','no'),(2377,'f3d5dca6e_eael_elements','a:0:{}','no'),(2378,'f3d5dca6e_eael_custom_js','','no'),(2379,'f3d5dca6e_eael_updated_at','1652940407','no'),(2645,'96481cb86_eael_custom_js','','no'),(2745,'_site_transient_timeout_wp_remote_block_patterns_0016c578e9a734997641495c72b2dfaa','1652947456','no'),(2746,'_site_transient_wp_remote_block_patterns_0016c578e9a734997641495c72b2dfaa','a:13:{i:0;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:509:\"\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&#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\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}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:1;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:2153:\"\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><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\">\n<h2 class=\"alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-container-3 wp-block-columns alignwide\">\n<div class=\"wp-container-1 wp-block-column\" 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<style>.wp-container-1 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-1 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-1 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-1 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-1 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-2 wp-block-column\"></div>\n<style>.wp-container-2 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-2 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-2 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-2 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-2 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-3 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-3 > * { margin: 0; }</style></div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1610:\"<!-- 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 has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><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=\"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\":330} -->\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:2;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:2363:\"\n<div class=\"wp-block-cover alignfull has-background-dim-40 has-background-dim has-parallax\" style=\"background-image:url(https://s.w.org/images/core/5.8/art-01.jpg);background-color:#000000;min-height:100vh\"><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"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-container-7 wp-block-columns alignwide\">\n<div class=\"wp-container-5 wp-block-column\" 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-container-4 wp-block-buttons\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background no-border-radius\" style=\"background-color:#000000;color:#ffffff\">Visit</a></div>\n</div>\n<style>.wp-container-4 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;}.wp-container-4 > * { margin: 0; }</style></div>\n<style>.wp-container-5 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-5 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-5 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-5 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-5 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-6 wp-block-column\"></div>\n<style>.wp-container-6 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-6 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-6 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-6 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-6 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-7 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-7 > * { margin: 0; }</style></div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:1865:\"<!-- 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-background-dim-40 has-background-dim has-parallax\" style=\"background-image:url(https://s.w.org/images/core/5.8/art-01.jpg);background-color:#000000;min-height:100vh\"><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=\"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 {\"borderRadius\":0,\"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 no-border-radius\" style=\"background-color:#000000;color:#ffffff\">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:3;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:1368:\"\n<div class=\"wp-block-cover alignfull has-background-dim\" style=\"background-color:#ffffff;min-height:100vh\"><div class=\"wp-block-cover__inner-container\">\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\">\n<h2 class=\"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-container-8 wp-block-buttons\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link\">Learn more</a></div>\n</div>\n<style>.wp-container-8 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;}.wp-container-8 > * { margin: 0; }</style></div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:1858:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim\" style=\"background-color:#ffffff;min-height:100vh\"><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=\"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\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:4;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:520:\"\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\">\n<h3 class=\"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\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:827:\"<!-- 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=\"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:5;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:685:\"\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%\"><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 class=\"wp-block-media-text__content\">\n<h2 class=\"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></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:1138:\"<!-- 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%\"><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 class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"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></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:6;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:656:\"\n<hr class=\"wp-block-separator is-style-default\" />\n\n\n\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><img 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></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><p>&#8220;Contributing makes me feel like I&#8217;m being useful to the planet.&#8221;</p><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:1012:\"<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator 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<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><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></div>\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\"><p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator is-style-default\" />\n<!-- /wp:separator -->\";}i:7;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:2429:\"\n<div class=\"wp-container-12 wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-container-9 wp-block-column\">\n<h3 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<style>.wp-container-9 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-9 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-9 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-9 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-9 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-10 wp-block-column\">\n<h3 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<style>.wp-container-10 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-10 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-10 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-10 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-10 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-11 wp-block-column\">\n<h3 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<style>.wp-container-11 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-11 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-11 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-11 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-11 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-12 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-12 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:1:{i:0;s:4:\"core\";}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:8;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:6506:\"\n<div class=\"wp-container-22 wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-container-14 wp-block-columns alignwide\">\n<div class=\"wp-container-13 wp-block-column\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n<style>.wp-container-13 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-13 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-13 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-13 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-13 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-14 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-14 > * { margin: 0; }</style>\n\n\n<div class=\"wp-container-18 wp-block-columns alignwide\">\n<div class=\"wp-container-15 wp-block-column\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><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. 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<style>.wp-container-15 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-15 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-15 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-15 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-15 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-16 wp-block-column\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\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</div>\n<style>.wp-container-16 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-16 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-16 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-16 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-16 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-17 wp-block-column\" style=\"flex-basis:33.62%\">\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</div>\n<style>.wp-container-17 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-17 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-17 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-17 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-17 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-18 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-18 > * { margin: 0; }</style>\n\n\n<div class=\"wp-container-21 wp-block-columns alignwide\">\n<div class=\"wp-container-19 wp-block-column\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright 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></div>\n</div>\n<style>.wp-container-19 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-19 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-19 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-19 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-19 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-20 wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">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<style>.wp-container-20 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-20 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-20 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-20 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-20 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-21 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-21 > * { margin: 0; }</style></div>\n<style>.wp-container-22 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-22 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-22 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-22 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-22 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\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\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><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. 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 -->\n<div style=\"height:100px\" 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\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright 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></div>\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:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">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 -->\";}i:9;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:2711:\"\n<div class=\"wp-container-26 wp-block-columns alignwide\">\n<div class=\"wp-container-23 wp-block-column\" style=\"flex-basis:25%\">\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</div>\n<style>.wp-container-23 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-23 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-23 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-23 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-23 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-24 wp-block-column\" 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 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<style>.wp-container-24 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-24 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-24 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-24 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-24 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-25 wp-block-column\" style=\"flex-basis:45%\">\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\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n<style>.wp-container-25 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-25 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-25 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-25 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-25 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-26 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-26 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}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:10;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:2486:\"\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\n\n\n<div class=\"wp-container-29 wp-block-columns\">\n<div class=\"wp-container-27 wp-block-column\">\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<style>.wp-container-27 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-27 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-27 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-27 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-27 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-28 wp-block-column\">\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<style>.wp-container-28 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-28 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-28 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-28 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-28 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-29 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-29 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}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:11;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:5105:\"\n<div class=\"wp-container-37 wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-container-32 wp-block-columns alignwide are-vertically-aligned-center\">\n<div class=\"wp-container-30 wp-block-column\" 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<style>.wp-container-30 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-30 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-30 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-30 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-30 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-31 wp-block-column\" 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<style>.wp-container-31 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-31 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-31 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-31 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-31 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-32 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-32 > * { margin: 0; }</style>\n\n\n<div class=\"wp-container-36 wp-block-columns alignwide\">\n<div class=\"wp-container-33 wp-block-column\"></div>\n<style>.wp-container-33 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-33 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-33 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-33 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-33 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-34 wp-block-column\">\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<style>.wp-container-34 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-34 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-34 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-34 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-34 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-35 wp-block-column\">\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<style>.wp-container-35 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-35 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-35 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-35 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-35 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-36 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-36 > * { margin: 0; }</style>\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n<style>.wp-container-37 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-37 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-37 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-37 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-37 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}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:12;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:844:\"\n<figure class=\"wp-container-39 wp-block-gallery-38 wp-block-gallery alignwide columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><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.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n<style>.wp-container-39 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;}.wp-container-39 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:737:\"<!-- wp:gallery {\"ids\":[null,null],\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><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.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n<!-- /wp:gallery -->\";}}','no'),(2747,'_site_transient_timeout_wp_remote_block_patterns_31c1499bbf8d730fc28243de69e5bf13','1652947456','no'),(2748,'_site_transient_wp_remote_block_patterns_31c1499bbf8d730fc28243de69e5bf13','a:14:{i:0;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:2130:\"\n<div class=\"wp-elements-4 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=\"background-color:#121c1c;color:#fffdc7;grid-template-columns:auto 60%\"><figure class=\"wp-block-media-text__media\"><img 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 class=\"wp-block-media-text__content\">\n<div class=\"wp-elements-3 wp-container-2 wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"wp-elements-1 has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<style>.wp-elements-1 a{color: #fffdc7;}</style></div>\n<style>.wp-container-2 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-2 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-2 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-2 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-2 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style><style>.wp-elements-3 a{color: #fffdc7;}</style></div></div>\n<style>.wp-elements-4 a{color: #fffdc7;}</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"header\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1592:\"<!-- 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=\"background-color:#121c1c;color:#fffdc7;grid-template-columns:auto 60%\"><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 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 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></div>\n<!-- /wp:media-text -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:566;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Event announcement and details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4225:\"\n<div class=\"wp-elements-12 wp-container-11 wp-block-group alignfull has-black-color has-text-color has-background has-link-color\" style=\"background-color:#d2cdc7\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">HÉLÈNE DUMAS<br><em>FRAGMENTS</em></h2>\n\n\n\n<h3 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 — 9/9/2021<br>SOUTH LONDON ART GALLERY</h3>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-container-7 wp-block-columns alignwide\">\n<div class=\"wp-container-5 wp-block-column\" style=\"flex-basis:25%\"></div>\n<style>.wp-container-5 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-5 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-5 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-5 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-5 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-6 wp-block-column\" style=\"flex-basis:75%\">\n<figure class=\"wp-block-image size-full\"><img src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n</div>\n<style>.wp-container-6 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-6 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-6 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-6 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-6 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-7 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-7 > * { margin: 0; }</style>\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-container-10 wp-block-columns alignwide\">\n<div class=\"wp-container-8 wp-block-column\">\n<p style=\"font-size:25px\">MORE INFO AT: WP.ORG · +44 21 1234 5678</p>\n</div>\n<style>.wp-container-8 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-8 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-8 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-8 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-8 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-9 wp-block-column\">\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">TICKETS</a></p>\n</div>\n<style>.wp-container-9 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-9 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-9 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-9 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-9 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-10 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-10 > * { margin: 0; }</style>\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n<style>.wp-container-11 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-11 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-11 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-11 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-11 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style><style>.wp-elements-12 a{color: var(--wp--preset--color--black);}</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:0:{}s:15:\"pattern_content\";s:2622:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#d2cdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|black\"}}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-group alignfull has-black-color has-text-color has-background has-link-color\" style=\"background-color:#d2cdc7\"><!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h2 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">HÉLÈNE DUMAS<br><em>FRAGMENTS</em></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h3 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 — 9/9/2021<br>SOUTH LONDON ART GALLERY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"75%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:75%\"><!-- wp:image {\"id\":3173,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p style=\"font-size:25px\">MORE INFO AT: WP.ORG · +44 21 1234 5678</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">TICKETS</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" 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: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:3212:\"\n<figure class=\"wp-block-image alignwide size-full\"><img 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-container-17 wp-block-columns alignwide are-vertically-aligned-center\">\n<div class=\"wp-container-13 wp-block-column is-vertically-aligned-center\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n<style>.wp-container-13 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-13 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-13 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-13 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-13 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-14 wp-block-column is-vertically-aligned-center\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n<style>.wp-container-14 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-14 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-14 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-14 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-14 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-16 wp-block-column is-vertically-aligned-center\">\n<div class=\"wp-container-15 wp-block-buttons\">\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\" style=\"background-color:#262626;color:#efefef\">Purchase Tickets</a></div>\n</div>\n<style>.wp-container-15 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;}.wp-container-15 > * { margin: 0; }</style></div>\n<style>.wp-container-16 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-16 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-16 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-16 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-16 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-17 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-17 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1624:\"<!-- 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\" style=\"background-color:#262626;color:#efefef\">Purchase Tickets</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: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:509:\"\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&#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\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}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:4;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:3127:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" 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-container-18 wp-block-group\" 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<style>.wp-container-18 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-18 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-18 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-18 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-18 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" 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-container-19 wp-block-group\" 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<style>.wp-container-19 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-19 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-19 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-19 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-19 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:0:{}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: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:3317:\"\n<div class=\"wp-container-24 wp-block-columns alignfull\">\n<div class=\"wp-container-20 wp-block-column\" 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\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img 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<style>.wp-container-20 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-20 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-20 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-20 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-20 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-23 wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-container-22 wp-block-columns\">\n<div class=\"wp-container-21 wp-block-column\" 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<style>.wp-container-21 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-21 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-21 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-21 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-21 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-22 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-22 > * { margin: 0; }</style></div>\n<style>.wp-container-23 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-23 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-23 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-23 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-23 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-24 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-24 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:0:{}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: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:4514:\"\n<div class=\"wp-container-29 wp-block-columns\">\n<div class=\"wp-container-25 wp-block-column\" style=\"flex-basis:10%\"></div>\n<style>.wp-container-25 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-25 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-25 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-25 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-25 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-26 wp-block-column\">\n<figure class=\"wp-block-image size-large\"><img 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<style>.wp-container-26 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-26 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-26 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-26 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-26 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-27 wp-block-column\"></div>\n<style>.wp-container-27 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-27 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-27 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-27 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-27 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-28 wp-block-column\" style=\"flex-basis:10%\"></div>\n<style>.wp-container-28 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-28 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-28 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-28 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-28 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-29 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-29 > * { margin: 0; }</style>\n\n\n<div class=\"wp-container-32 wp-block-columns\">\n<div class=\"wp-container-30 wp-block-column\"></div>\n<style>.wp-container-30 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-30 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-30 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-30 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-30 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-31 wp-block-column\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n<style>.wp-container-31 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-31 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-31 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-31 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-31 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-32 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-32 > * { margin: 0; }</style>\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}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:7;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:2168:\"\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><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\">\n<h2 class=\"alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-container-35 wp-block-columns alignwide\">\n<div class=\"wp-container-33 wp-block-column\" 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<style>.wp-container-33 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-33 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-33 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-33 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-33 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-34 wp-block-column\"></div>\n<style>.wp-container-34 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-34 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-34 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-34 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-34 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-35 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-35 > * { margin: 0; }</style></div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1610:\"<!-- 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 has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><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=\"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\":330} -->\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:8;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:520:\"\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\">\n<h3 class=\"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\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:827:\"<!-- 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=\"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:9;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Offset images with descriptions.\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2808:\"\n<div class=\"wp-container-38 wp-block-columns\">\n<div class=\"wp-container-36 wp-block-column\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" 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<p style=\"font-size:14px\"><strong>White Irises</strong><br>Ogawa Kazumasa</p>\n</div>\n<style>.wp-container-36 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-36 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-36 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-36 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-36 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-37 wp-block-column\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p style=\"font-size:14px\"><strong>Cherry Blossom</strong><br>Ogawa Kazumasa</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" 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<style>.wp-container-37 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-37 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-37 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-37 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-37 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-38 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-38 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:32:\"Offset images with descriptions.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";}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:0:{}s:15:\"pattern_content\";s:1175:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>White Irises</strong><br>Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cherry Blossom</strong><br>Ogawa Kazumasa</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:5254:\"\n<div class=\"wp-container-48 wp-block-columns alignwide\">\n<div class=\"wp-elements-41 wp-container-40 wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 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-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for one adult</li><li>One free ticket per special exhibition</li><li>Two single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-container-39 wp-block-buttons alignfull\">\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\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n<style>.wp-container-39 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;justify-content: center;}.wp-container-39 > * { margin: 0; }</style></div>\n<style>.wp-container-40 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-40 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-40 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-40 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-40 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style><style>.wp-elements-41 a{color: #000000;}</style>\n\n\n<div class=\"wp-elements-44 wp-container-43 wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 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 is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Four free tickets per special exhibition</li><li>Four single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-container-42 wp-block-buttons alignfull\">\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\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n<style>.wp-container-42 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;justify-content: center;}.wp-container-42 > * { margin: 0; }</style></div>\n<style>.wp-container-43 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-43 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-43 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-43 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-43 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style><style>.wp-elements-44 a{color: #000000;}</style>\n\n\n<div class=\"wp-elements-47 wp-container-46 wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 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 is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Five free tickets per special exhibition</li><li>Six single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-container-45 wp-block-buttons alignfull\">\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\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n<style>.wp-container-45 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;justify-content: center;}.wp-container-45 > * { margin: 0; }</style></div>\n<style>.wp-container-46 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-46 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-46 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-46 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-46 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style><style>.wp-elements-47 a{color: #000000;}</style></div>\n<style>.wp-container-48 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-48 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"buttons\";i:1;s:7:\"columns\";i:2;s:8:\"featured\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:5340:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- 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=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 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 {\"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 -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for one adult</li><li>One free ticket per special exhibition</li><li>Two single-use guest passes per year</li></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\" 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=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 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 {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Four free tickets per special exhibition</li><li>Four single-use guest passes per year</li></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\" 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=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 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 {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Five free tickets per special exhibition</li><li>Six single-use guest passes per year</li></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\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:11;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:1477:\"\n<div class=\"wp-container-50 wp-block-group alignfull has-text-color has-background\" 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\" 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-container-49 wp-block-buttons\">\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<style>.wp-container-49 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: wrap;align-items: center;justify-content: center;}.wp-container-49 > * { margin: 0; }</style>\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n<style>.wp-container-50 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-50 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-50 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-50 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-50 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:0:{}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:12;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:2435:\"\n<div class=\"wp-container-54 wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-container-51 wp-block-column\">\n<h3 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<style>.wp-container-51 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-51 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-51 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-51 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-51 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-52 wp-block-column\">\n<h3 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<style>.wp-container-52 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-52 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-52 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-52 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-52 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-53 wp-block-column\">\n<h3 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<style>.wp-container-53 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-53 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-53 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-53 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-53 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-54 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-54 > * { margin: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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: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:1:{i:0;s:4:\"core\";}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:13;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:6506:\"\n<div class=\"wp-container-64 wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-container-56 wp-block-columns alignwide\">\n<div class=\"wp-container-55 wp-block-column\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n<style>.wp-container-55 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-55 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-55 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-55 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-55 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-56 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-56 > * { margin: 0; }</style>\n\n\n<div class=\"wp-container-60 wp-block-columns alignwide\">\n<div class=\"wp-container-57 wp-block-column\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><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. 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<style>.wp-container-57 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-57 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-57 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-57 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-57 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-58 wp-block-column\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\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</div>\n<style>.wp-container-58 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-58 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-58 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-58 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-58 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-59 wp-block-column\" style=\"flex-basis:33.62%\">\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</div>\n<style>.wp-container-59 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-59 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-59 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-59 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-59 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-60 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-60 > * { margin: 0; }</style>\n\n\n<div class=\"wp-container-63 wp-block-columns alignwide\">\n<div class=\"wp-container-61 wp-block-column\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright 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></div>\n</div>\n<style>.wp-container-61 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-61 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-61 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-61 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-61 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\n\n\n<div class=\"wp-container-62 wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">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<style>.wp-container-62 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-62 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-62 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-62 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-62 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style></div>\n<style>.wp-container-63 {display: flex;gap: var( --wp--style--block-gap, 0.5em );flex-wrap: nowrap;align-items: center;}.wp-container-63 > * { margin: 0; }</style></div>\n<style>.wp-container-64 > .alignleft { float: left; margin-inline-start: 0; margin-inline-end: 2em; }.wp-container-64 > .alignright { float: right; margin-inline-start: 2em; margin-inline-end: 0; }.wp-container-64 > .aligncenter { margin-left: auto !important; margin-right: auto !important; }.wp-container-64 > * { margin-block-start: 0; margin-block-end: 0; }.wp-container-64 > * + * { margin-block-start: var( --wp--style--block-gap ); margin-block-end: 0; }</style>\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:10:\"spay_email\";s:0:\"\";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:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\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\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><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. 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 -->\n<div style=\"height:100px\" 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\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright 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></div>\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:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">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 -->\";}}','no'),(2749,'_site_transient_timeout_theme_roots','1652945656','no'),(2750,'_site_transient_theme_roots','a:3:{s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(2769,'_transient_timeout_global_styles_twentytwenty','1652943927','no'),(2770,'_transient_global_styles_twentytwenty','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--accent: #cd2653;--wp--preset--color--primary: #000000;--wp--preset--color--secondary: #6d6d6d;--wp--preset--color--subtle-background: #dcd7ca;--wp--preset--color--background: #f5efe0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 18px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 26.25px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--normal: 21px;--wp--preset--font-size--larger: 32px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(2771,'_transient_timeout_global_styles_svg_filters_twentytwenty','1652943927','no'),(2772,'_transient_global_styles_svg_filters_twentytwenty','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(2881,'HTMegaPro_lic_Key','','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3448 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.19\";s:5:\"title\";s:54:\"Humanite – Charity & Donation Elementor Template Kit\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.1\";s:9:\"templates\";a:20:{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:32:\"https://templatekit.jegtheme.com\";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:7;}}}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:60:\"https://templatekit.jegtheme.com/humanite/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:46;}}}i:2;a:9:{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:64:\"https://templatekit.jegtheme.com/humanite/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;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:358;}}}i:3;a:9:{s:4:\"name\";s:6:\"Causes\";s:10:\"screenshot\";s:22:\"screenshots/causes.jpg\";s:6:\"source\";s:21:\"templates/causes.json\";s:11:\"preview_url\";s:62:\"https://templatekit.jegtheme.com/humanite/template-kit/causes/\";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:163;}}}i:4;a:9:{s:4:\"name\";s:14:\"Causes Details\";s:10:\"screenshot\";s:30:\"screenshots/causes-details.jpg\";s:6:\"source\";s:29:\"templates/causes-details.json\";s:11:\"preview_url\";s:70:\"https://templatekit.jegtheme.com/humanite/template-kit/causes-details/\";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:316;}}}i:5;a:8:{s:4:\"name\";s:6:\"Events\";s:10:\"screenshot\";s:22:\"screenshots/events.jpg\";s:6:\"source\";s:21:\"templates/events.json\";s:11:\"preview_url\";s:62:\"https://templatekit.jegtheme.com/humanite/template-kit/events/\";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:6;a:8:{s:4:\"name\";s:13:\"Event Details\";s:10:\"screenshot\";s:29:\"screenshots/event-details.jpg\";s:6:\"source\";s:28:\"templates/event-details.json\";s:11:\"preview_url\";s:69:\"https://templatekit.jegtheme.com/humanite/template-kit/event-details/\";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:7;a:9:{s:4:\"name\";s:9:\"Volunteer\";s:10:\"screenshot\";s:25:\"screenshots/volunteer.jpg\";s:6:\"source\";s:24:\"templates/volunteer.json\";s:11:\"preview_url\";s:65:\"https://templatekit.jegtheme.com/humanite/template-kit/volunteer/\";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:454;}}}i:8;a:8:{s:4:\"name\";s:7:\"Gallery\";s:10:\"screenshot\";s:23:\"screenshots/gallery.jpg\";s:6:\"source\";s:22:\"templates/gallery.json\";s:11:\"preview_url\";s:63:\"https://templatekit.jegtheme.com/humanite/template-kit/gallery/\";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:8:{s:4:\"name\";s:3:\"FAQ\";s:10:\"screenshot\";s:19:\"screenshots/faq.jpg\";s:6:\"source\";s:18:\"templates/faq.json\";s:11:\"preview_url\";s:59:\"https://templatekit.jegtheme.com/humanite/template-kit/faq/\";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:10;a:8:{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:60:\"https://templatekit.jegtheme.com/humanite/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;}i:11;a:8:{s:4:\"name\";s:11:\"Single Blog\";s:10:\"screenshot\";s:27:\"screenshots/single-blog.jpg\";s:6:\"source\";s:26:\"templates/single-blog.json\";s:11:\"preview_url\";s:67:\"https://templatekit.jegtheme.com/humanite/template-kit/single-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;}i:12;a:9:{s:4:\"name\";s:7:\"Contact\";s:10:\"screenshot\";s:23:\"screenshots/contact.jpg\";s:6:\"source\";s:22:\"templates/contact.json\";s:11:\"preview_url\";s:63:\"https://templatekit.jegtheme.com/humanite/template-kit/contact/\";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:612;}}}i:13;a:8:{s:4:\"name\";s:16:\"MetForm Donation\";s:10:\"screenshot\";s:32:\"screenshots/metform-donation.jpg\";s:6:\"source\";s:31:\"templates/metform-donation.json\";s:11:\"preview_url\";s:72:\"https://templatekit.jegtheme.com/humanite/template-kit/metform-donation/\";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:14;a:8:{s:4:\"name\";s:22:\"MetForm Register Event\";s:10:\"screenshot\";s:38:\"screenshots/metform-register-event.jpg\";s:6:\"source\";s:37:\"templates/metform-register-event.json\";s:11:\"preview_url\";s:78:\"https://templatekit.jegtheme.com/humanite/template-kit/metform-register-event/\";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:15;a:8:{s:4:\"name\";s:26:\"MetForm Register Volunteer\";s:10:\"screenshot\";s:42:\"screenshots/metform-register-volunteer.jpg\";s:6:\"source\";s:41:\"templates/metform-register-volunteer.json\";s:11:\"preview_url\";s:82:\"https://templatekit.jegtheme.com/humanite/template-kit/metform-register-volunteer/\";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:16;a:8:{s:4:\"name\";s:15:\"MetForm Contact\";s:10:\"screenshot\";s:31:\"screenshots/metform-contact.jpg\";s:6:\"source\";s:30:\"templates/metform-contact.json\";s:11:\"preview_url\";s:71:\"https://templatekit.jegtheme.com/humanite/template-kit/metform-contact/\";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:17;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:62:\"https://templatekit.jegtheme.com/humanite/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:52;}}}i:18;a:8:{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:62:\"https://templatekit.jegtheme.com/humanite/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;}i:19;a:8:{s:4:\"name\";s:8:\"404 Page\";s:10:\"screenshot\";s:24:\"screenshots/404-page.jpg\";s:6:\"source\";s:23:\"templates/404-page.json\";s:11:\"preview_url\";s:64:\"https://templatekit.jegtheme.com/humanite/template-kit/404-page/\";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:16:\"required_plugins\";a:4:{i:0;a:4:{s:4:\"name\";s:16:\"ElementsKit Lite\";s:7:\"version\";s:5:\"2.2.4\";s:4:\"file\";s:37:\"elementskit-lite/elementskit-lite.php\";s:6:\"author\";s:5:\"Wpmet\";}i:1;a:4:{s:4:\"name\";s:7:\"MetForm\";s:7:\"version\";s:5:\"1.4.9\";s:4:\"file\";s:19:\"metform/metform.php\";s:6:\"author\";s:5:\"Wpmet\";}i:2;a:4:{s:4:\"name\";s:27:\"Stratum - Elementor Widgets\";s:7:\"version\";s:5:\"1.3.8\";s:4:\"file\";s:19:\"stratum/stratum.php\";s:6:\"author\";s:9:\"MotoPress\";}i:3;a:4:{s:4:\"name\";s:17:\"Jeg Elementor Kit\";s:7:\"version\";s:6:\"1.10.2\";s:4:\"file\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:6:\"author\";s:9:\"JegStudio\";}}s:6:\"images\";a:35:{i:0;a:8:{s:8:\"filename\";s:76:\"mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-e1611195626533.jpg\";s:13:\"thumbnail_url\";s:147:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-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:272848;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-C3ZU47E\";}i:1;a:8:{s:8:\"filename\";s:28:\"aubergine-e1611195670454.jpg\";s:13:\"thumbnail_url\";s:99:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/aubergine-800x533.jpg\";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:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:4;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}i:5;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:167568;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-KMC5YTY\";}i:2;a:8:{s:8:\"filename\";s:9:\"Hands.png\";s:13:\"thumbnail_url\";s:95:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Hands-800x450.png\";s:9:\"templates\";a:7:{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:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:4;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}i:5;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:6;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}}s:8:\"filesize\";i:57926;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1080;}s:12:\"image_source\";s:3:\"cc0\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:87:\"https://www.freepik.com/free-vector/raised-hands-world-cancer-day-awareness_6640281.htm\";}i:3;a:8:{s:8:\"filename\";s:53:\"group-of-volunteer-forming-huddles-e1611195732112.jpg\";s:13:\"thumbnail_url\";s:124:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/group-of-volunteer-forming-huddles-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:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:278775;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-F4UX535\";}i:4;a:8:{s:8:\"filename\";s:47:\"portrait-of-volunteer-group-forming-huddles.jpg\";s:13:\"thumbnail_url\";s:134:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/portrait-of-volunteer-group-forming-huddles-800x1200.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:375427;s:10:\"dimensions\";a:2:{i:0;i:1333;i:1;i:2000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-9UVX6YK\";}i:5;a:8:{s:8:\"filename\";s:12:\"Causes-2.jpg\";s:13:\"thumbnail_url\";s:98:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Causes-2-800x534.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:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:2;a:2:{s:6:\"source\";s:29:\"templates/causes-details.json\";s:4:\"name\";s:14:\"Causes Details\";}}s:8:\"filesize\";i:125083;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:684;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:68:\"https://www.twenty20.com/photos/f8f9610c-d43f-484b-82ba-ea24d751d1f6\";}i:6;a:8:{s:8:\"filename\";s:10:\"causes.jpg\";s:13:\"thumbnail_url\";s:96:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/causes-800x534.jpg\";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:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:3;a:2:{s:6:\"source\";s:29:\"templates/causes-details.json\";s:4:\"name\";s:14:\"Causes Details\";}i:4;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:5;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:173106;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:684;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:68:\"https://www.twenty20.com/photos/f4abecc0-453e-4b62-a11c-dc7d7e7e213d\";}i:7;a:8:{s:8:\"filename\";s:17:\"Image-A9QS3N7.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-A9QS3N7-800x534.jpg\";s:9:\"templates\";a:5:{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:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:2;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}i:3;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:4;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:179387;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:684;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-A9QS3N7\";}i:8;a:8:{s:8:\"filename\";s:71:\"hands-of-young-homeless-african-man-begging-for-food-e1611195781207.jpg\";s:13:\"thumbnail_url\";s:142:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/hands-of-young-homeless-african-man-begging-for-food-800x534.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:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:2;a:2:{s:6:\"source\";s:29:\"templates/causes-details.json\";s:4:\"name\";s:14:\"Causes Details\";}}s:8:\"filesize\";i:75636;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:684;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-DH5BXR9\";}i:9;a:8:{s:8:\"filename\";s:21:\"happy-kid-W97QA6P.jpg\";s:13:\"thumbnail_url\";s:108:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/happy-kid-W97QA6P-800x1153.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:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}}s:8:\"filesize\";i:246084;s:10:\"dimensions\";a:2:{i:0;i:1284;i:1;i:1851;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-W97QA6P\";}i:10;a:8:{s:8:\"filename\";s:53:\"portrait-of-volunteer-group-posing-e1611195950376.jpg\";s:13:\"thumbnail_url\";s:124:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/portrait-of-volunteer-group-posing-800x533.jpg\";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:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:4;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}i:5;a:2:{s:6:\"source\";s:23:\"templates/404-page.json\";s:4:\"name\";s:8:\"404 Page\";}}s:8:\"filesize\";i:359084;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-T5LXKKM\";}i:11;a:8:{s:8:\"filename\";s:17:\"Image-9RVG87W.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-9RVG87W-800x534.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:298062;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1281;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-9RVG87W\";}i:12;a:8:{s:8:\"filename\";s:16:\"background-2.jpg\";s:13:\"thumbnail_url\";s:102:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/background-2-800x533.jpg\";s:9:\"templates\";a:8:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:2;a:2:{s:6:\"source\";s:29:\"templates/causes-details.json\";s:4:\"name\";s:14:\"Causes Details\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:4;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}i:5;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:6;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:7;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:219634;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:68:\"https://www.twenty20.com/photos/af537ffe-ac8d-4cf9-ad3a-33da20dbf5b9\";}i:13;a:8:{s:8:\"filename\";s:112:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\";s:13:\"thumbnail_url\";s:183:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-800x534.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:2;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:4;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:282028;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-RDQ83ZY\";}i:14;a:8:{s:8:\"filename\";s:17:\"Image-7GJ5W9M.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-7GJ5W9M-800x787.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}}s:8:\"filesize\";i:157518;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:1007;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-7GJ5W9M\";}i:15;a:8:{s:8:\"filename\";s:17:\"Image-VZKUZZD.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-VZKUZZD-800x787.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}}s:8:\"filesize\";i:199885;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:1007;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-VZKUZZD\";}i:16;a:8:{s:8:\"filename\";s:17:\"Image-5S79FQC.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-5S79FQC-800x787.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}}s:8:\"filesize\";i:158226;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:1007;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-5S79FQC\";}i:17;a:8:{s:8:\"filename\";s:74:\"african-american-girl-hands-holding-a-marble-made-heart-e1611196026519.jpg\";s:13:\"thumbnail_url\";s:145:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/african-american-girl-hands-holding-a-marble-made-heart-800x534.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}i:1;a:2:{s:6:\"source\";s:29:\"templates/causes-details.json\";s:4:\"name\";s:14:\"Causes Details\";}i:2;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}}s:8:\"filesize\";i:151806;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PH2LYX5\";}i:18;a:8:{s:8:\"filename\";s:11:\"Image-1.png\";s:13:\"thumbnail_url\";s:89:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}}s:8:\"filesize\";i:31858;s:10:\"dimensions\";a:2:{i:0;i:160;i:1;i:160;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-M6NJPEF\";}i:19;a:8:{s:8:\"filename\";s:11:\"image-3.png\";s:13:\"thumbnail_url\";s:89:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/image-3.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}}s:8:\"filesize\";i:29754;s:10:\"dimensions\";a:2:{i:0;i:160;i:1;i:160;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-Q8JDNBT\";}i:20;a:8:{s:8:\"filename\";s:9:\"Image.jpg\";s:13:\"thumbnail_url\";s:87:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}}s:8:\"filesize\";i:17155;s:10:\"dimensions\";a:2:{i:0;i:160;i:1;i:160;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-83S5W35\";}i:21;a:8:{s:8:\"filename\";s:15:\"Testimonial.jpg\";s:13:\"thumbnail_url\";s:93:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Testimonial.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/causes.json\";s:4:\"name\";s:6:\"Causes\";}}s:8:\"filesize\";i:29574;s:10:\"dimensions\";a:2:{i:0;i:160;i:1;i:160;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-N8572T7\";}i:22;a:8:{s:8:\"filename\";s:58:\"portrait-of-volunteer-group-holding-box-e1611196062937.jpg\";s:13:\"thumbnail_url\";s:129:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/portrait-of-volunteer-group-holding-box-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}}s:8:\"filesize\";i:317950;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-R6FZ4GZ\";}i:23;a:8:{s:8:\"filename\";s:18:\"Logo-CE3VQV@2x.png\";s:13:\"thumbnail_url\";s:104:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Logo-CE3VQV@2x-800x319.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}}s:8:\"filesize\";i:18045;s:10:\"dimensions\";a:2:{i:0;i:898;i:1;i:358;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:39:\"https://elements.envato.com/logo-CE3VQV\";}i:24;a:8:{s:8:\"filename\";s:18:\"Logo-DAHN76@2x.png\";s:13:\"thumbnail_url\";s:104:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Logo-DAHN76@2x-800x310.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}}s:8:\"filesize\";i:41521;s:10:\"dimensions\";a:2:{i:0;i:921;i:1;i:357;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:39:\"https://elements.envato.com/logo-DAHN76\";}i:25;a:8:{s:8:\"filename\";s:18:\"Logo-JQLHGD@2x.png\";s:13:\"thumbnail_url\";s:104:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Logo-JQLHGD@2x-800x307.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}}s:8:\"filesize\";i:24461;s:10:\"dimensions\";a:2:{i:0;i:933;i:1;i:358;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:39:\"https://elements.envato.com/logo-JQLHGD\";}i:26;a:8:{s:8:\"filename\";s:19:\"Logoo-89Q2DZ@2x.png\";s:13:\"thumbnail_url\";s:105:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Logoo-89Q2DZ@2x-800x280.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/event-details.json\";s:4:\"name\";s:13:\"Event Details\";}}s:8:\"filesize\";i:23889;s:10:\"dimensions\";a:2:{i:0;i:1018;i:1;i:356;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:39:\"https://elements.envato.com/logo-89Q2DZ\";}i:27;a:8:{s:8:\"filename\";s:17:\"Image-PZ7TQP6.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-PZ7TQP6-800x787.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}}s:8:\"filesize\";i:192476;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:1007;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PZ7TQP6\";}i:28;a:8:{s:8:\"filename\";s:17:\"Image-PVZXQSC.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-PVZXQSC-800x787.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}}s:8:\"filesize\";i:178155;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:1007;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PVZXQSC\";}i:29;a:8:{s:8:\"filename\";s:17:\"Image-KEAZPUR.jpg\";s:13:\"thumbnail_url\";s:103:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Image-KEAZPUR-800x787.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:24:\"templates/volunteer.json\";s:4:\"name\";s:9:\"Volunteer\";}}s:8:\"filesize\";i:178143;s:10:\"dimensions\";a:2:{i:0;i:1024;i:1;i:1007;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-KEAZPUR\";}i:30;a:8:{s:8:\"filename\";s:78:\"cropped-shot-of-volunteers-with-food-and-drinks-for-charity-e1611196122635.jpg\";s:13:\"thumbnail_url\";s:149:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/cropped-shot-of-volunteers-with-food-and-drinks-for-charity-800x534.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:146581;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-QQ6GJBV\";}i:31;a:8:{s:8:\"filename\";s:69:\"poor-male-beggar-asking-for-charity-money-and-help-e1611196106673.jpg\";s:13:\"thumbnail_url\";s:140:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/poor-male-beggar-asking-for-charity-money-and-help-800x534.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:122152;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PCNTSB6\";}i:32;a:8:{s:8:\"filename\";s:100:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--e1611196116274.jpg\";s:13:\"thumbnail_url\";s:171:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:261270;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-FUQANW4\";}i:33;a:8:{s:8:\"filename\";s:12:\"Logo2@2x.png\";s:13:\"thumbnail_url\";s:98:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/Logo2@2x-800x213.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:21765;s:10:\"dimensions\";a:2:{i:0;i:1259;i:1;i:335;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:40:\"https://elements.envato.com/logo-EJG5X3Y\";}i:34;a:8:{s:8:\"filename\";s:17:\"logo-black@2x.png\";s:13:\"thumbnail_url\";s:95:\"https://templatekit.jegtheme.com/humanite/wp-content/uploads/sites/32/2021/01/logo-black@2x.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/header.json\";s:4:\"name\";s:6:\"Header\";}}s:8:\"filesize\";i:23642;s:10:\"dimensions\";a:2:{i:0;i:1259;i:1;i:334;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:40:\"https://elements.envato.com/logo-EJG5X3Y\";}}}'),(6,6,'envato_tk_folder_name','c66eb2229d177af6ded42e47303e9604'),(7,6,'envato_tk_builder','elementor'),(8,6,'envato_tk_source_zip_url','https://demoweblinks.in/aahan/wp-content/uploads/template-kits/c66eb2229d177af6ded42e47303e9604/source-6.zip'),(9,7,'_elementor_edit_mode','builder'),(10,7,'_elementor_template_type','kit'),(11,7,'_elementor_version','3.6.5'),(12,8,'_elementor_edit_mode','builder'),(13,8,'_elementor_template_type','section'),(14,8,'_elementor_version','3.6.5'),(15,7,'_wp_page_template','default'),(16,7,'_elementor_page_settings','a:95:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"c53d536\";s:5:\"title\";s:10:\"Background\";s:5:\"color\";s:7:\"#FBF9F5\";}i:1;a:3:{s:3:\"_id\";s:7:\"7e2fbf0\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#F0F0F0\";}}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:\"#ed6421\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#252425\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#6F747E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#ED6421\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}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:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}}i:2;a:7:{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:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:18:\"Shadows Into Light\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:3:{i:0;a:8:{s:3:\"_id\";s:7:\"1dbf442\";s:5:\"title\";s:15:\"Primary Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"35b8a75\";s:5:\"title\";s:10:\"H3 Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"ffbaf7c\";s:5:\"title\";s:3:\"H3 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:15:\"activeItemIndex\";i:1;s:10:\"body_color\";s:7:\"#6F747E\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:11:\"__globals__\";a:22:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=ffbaf7c\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:24:\"h6_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=35b8a75\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_background_color\";s:0:\"\";s:17:\"button_text_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:0:\"\";}s:17:\"link_normal_color\";s:7:\"#FCBC45\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:8:\"h1_color\";s:7:\"#252425\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#252425\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:8:\"h3_color\";s:7:\"#252425\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:8:\"h4_color\";s:7:\"#252425\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:8:\"h5_color\";s:7:\"#FCBC45\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"600\";s:28:\"h5_typography_text_transform\";s:9:\"uppercase\";s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#FCBC45\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:10:\"Noto Serif\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#252425\";s:23:\"button_background_color\";s:7:\"#FCBC45\";s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:0;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}s:16:\"form_label_color\";s:7:\"#252425\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Heebo\";s:33:\"form_label_typography_font_weight\";s:3:\"300\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.29999999999999982236431605997495353221893310546875;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:33:\"form_field_typography_font_weight\";s:3:\"300\";s:21:\"form_field_text_color\";s:7:\"#6F747E\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_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:23:\"form_field_border_color\";s:7:\"#F0F0F0\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_typography_text_decoration\";s:4:\"none\";s:16:\"link_hover_color\";s:7:\"#FCBC45\";s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#252425\";s:9:\"site_name\";s:5:\"Aahan\";s:16:\"site_description\";s:27:\"Just another WordPress site\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(17,7,'_elementor_data','[]'),(18,9,'_elementor_edit_mode','builder'),(19,9,'_elementor_template_type','section'),(20,9,'_elementor_version','3.6.5'),(21,9,'_wp_page_template','default'),(22,9,'_elementor_page_settings','a:93:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"c53d536\";s:5:\"title\";s:10:\"Background\";s:5:\"color\";s:7:\"#FBF9F5\";}i:1;a:3:{s:3:\"_id\";s:7:\"7e2fbf0\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#F0F0F0\";}}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:\"#FCBC45\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#252425\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#6F747E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FCBC45\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}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:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}}i:2;a:7:{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:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:18:\"Shadows Into Light\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:3:{i:0;a:8:{s:3:\"_id\";s:7:\"1dbf442\";s:5:\"title\";s:15:\"Primary Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"35b8a75\";s:5:\"title\";s:10:\"H3 Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"ffbaf7c\";s:5:\"title\";s:3:\"H3 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:15:\"activeItemIndex\";i:1;s:10:\"body_color\";s:7:\"#6F747E\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:11:\"__globals__\";a:22:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=ffbaf7c\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:24:\"h6_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=35b8a75\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_background_color\";s:0:\"\";s:17:\"button_text_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:0:\"\";}s:17:\"link_normal_color\";s:7:\"#FCBC45\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:8:\"h1_color\";s:7:\"#252425\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#252425\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:8:\"h3_color\";s:7:\"#252425\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:8:\"h4_color\";s:7:\"#252425\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:8:\"h5_color\";s:7:\"#FCBC45\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"600\";s:28:\"h5_typography_text_transform\";s:9:\"uppercase\";s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#FCBC45\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:10:\"Noto Serif\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#252425\";s:23:\"button_background_color\";s:7:\"#FCBC45\";s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:0;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}s:16:\"form_label_color\";s:7:\"#252425\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Heebo\";s:33:\"form_label_typography_font_weight\";s:3:\"300\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.29999999999999982236431605997495353221893310546875;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:33:\"form_field_typography_font_weight\";s:3:\"300\";s:21:\"form_field_text_color\";s:7:\"#6F747E\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_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:23:\"form_field_border_color\";s:7:\"#F0F0F0\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_typography_text_decoration\";s:4:\"none\";s:16:\"link_hover_color\";s:7:\"#FCBC45\";s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#252425\";s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(23,9,'_elementor_data','[]'),(24,7,'_elementor_page_assets','a:0:{}'),(25,7,'envato_tk_source_kit','6'),(26,7,'envato_tk_source_index','0'),(27,10,'_elementor_edit_mode','builder'),(28,10,'_elementor_template_type','kit'),(29,10,'_elementor_version','3.6.5'),(30,10,'_wp_page_template','default'),(31,10,'_elementor_page_settings','a:93:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"c53d536\";s:5:\"title\";s:10:\"Background\";s:5:\"color\";s:7:\"#FBF9F5\";}i:1;a:3:{s:3:\"_id\";s:7:\"7e2fbf0\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#F0F0F0\";}}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:\"#FCBC45\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#252425\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#6F747E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FCBC45\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}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:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}}i:2;a:7:{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:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:18:\"Shadows Into Light\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:3:{i:0;a:8:{s:3:\"_id\";s:7:\"1dbf442\";s:5:\"title\";s:15:\"Primary Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"35b8a75\";s:5:\"title\";s:10:\"H3 Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"ffbaf7c\";s:5:\"title\";s:3:\"H3 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:15:\"activeItemIndex\";i:1;s:10:\"body_color\";s:7:\"#6F747E\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:11:\"__globals__\";a:22:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=ffbaf7c\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:24:\"h6_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=35b8a75\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_background_color\";s:0:\"\";s:17:\"button_text_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:0:\"\";}s:17:\"link_normal_color\";s:7:\"#FCBC45\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:8:\"h1_color\";s:7:\"#252425\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#252425\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:8:\"h3_color\";s:7:\"#252425\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:8:\"h4_color\";s:7:\"#252425\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:8:\"h5_color\";s:7:\"#FCBC45\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"600\";s:28:\"h5_typography_text_transform\";s:9:\"uppercase\";s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#FCBC45\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:10:\"Noto Serif\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#252425\";s:23:\"button_background_color\";s:7:\"#FCBC45\";s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:0;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}s:16:\"form_label_color\";s:7:\"#252425\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Heebo\";s:33:\"form_label_typography_font_weight\";s:3:\"300\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.29999999999999982236431605997495353221893310546875;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:33:\"form_field_typography_font_weight\";s:3:\"300\";s:21:\"form_field_text_color\";s:7:\"#6F747E\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_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:23:\"form_field_border_color\";s:7:\"#F0F0F0\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_typography_text_decoration\";s:4:\"none\";s:16:\"link_hover_color\";s:7:\"#FCBC45\";s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#252425\";s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(32,10,'_elementor_data','[]'),(33,10,'_elementor_page_assets','a:0:{}'),(34,11,'_edit_lock','1652875368:1'),(35,11,'_elementor_edit_mode','builder'),(36,11,'_elementor_template_type','wp-page'),(37,11,'_elementor_version','3.6.5'),(39,14,'_elementor_edit_mode','builder'),(40,14,'_elementor_template_type','wp-page'),(41,14,'_elementor_version','3.6.5'),(42,15,'_edit_lock','1652934791:1'),(43,17,'_edit_lock','1652937529:1'),(44,19,'_edit_lock','1652878520:1'),(45,21,'_edit_lock','1652676711:1'),(46,23,'_edit_lock','1652676722:1'),(47,25,'_edit_lock','1652676735:1'),(48,27,'_edit_lock','1652676745:1'),(49,29,'_edit_lock','1652944884:1'),(57,32,'_elementor_edit_mode','builder'),(58,32,'_elementor_template_type','wp-page'),(59,32,'_elementor_version','3.6.5'),(60,33,'_elementor_edit_mode','builder'),(61,33,'_elementor_template_type','wp-page'),(62,33,'_elementor_version','3.6.5'),(63,11,'_wp_page_template','elementor_canvas'),(64,11,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(65,11,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f239fac\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(66,34,'_elementor_edit_mode','builder'),(67,34,'_elementor_template_type','wp-page'),(68,34,'_elementor_version','3.6.5'),(69,34,'_wp_page_template','elementor_canvas'),(70,34,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(71,34,'_elementor_data','[]'),(72,11,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(73,35,'_wp_attached_file','2022/05/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg'),(74,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:69:\"2022/05/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:69:\"mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:71:\"mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75,35,'_elementor_source_image_hash','d3075065143da312c563b999faab3cc3930bd286'),(76,36,'_wp_attached_file','2022/05/aubergine.jpg'),(77,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:21:\"2022/05/aubergine.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"aubergine-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"aubergine-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"aubergine-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"aubergine-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"aubergine-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(78,36,'_elementor_source_image_hash','29dde6a637bbd6feec0645bb25d0967ca148e288'),(79,37,'_wp_attached_file','2022/05/Hands.png'),(80,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:17:\"2022/05/Hands.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Hands-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"Hands-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Hands-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"Hands-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"Hands-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(81,37,'_elementor_source_image_hash','c4e4d539321324acc62d429d72cd82532242b7ea'),(82,38,'_wp_attached_file','2022/05/group-of-volunteer-forming-huddles.jpg'),(83,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:46:\"2022/05/group-of-volunteer-forming-huddles.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"group-of-volunteer-forming-huddles-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"group-of-volunteer-forming-huddles-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"group-of-volunteer-forming-huddles-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"group-of-volunteer-forming-huddles-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"group-of-volunteer-forming-huddles-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(84,38,'_elementor_source_image_hash','d9423361f2c7b303716c08e485ec657a74b39735'),(85,39,'_wp_attached_file','2022/05/portrait-of-volunteer-group-forming-huddles.jpg'),(86,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1333;s:6:\"height\";i:2000;s:4:\"file\";s:55:\"2022/05/portrait-of-volunteer-group-forming-huddles.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"portrait-of-volunteer-group-forming-huddles-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"portrait-of-volunteer-group-forming-huddles-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"portrait-of-volunteer-group-forming-huddles-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"portrait-of-volunteer-group-forming-huddles-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"portrait-of-volunteer-group-forming-huddles-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87,39,'_elementor_source_image_hash','82219e7df44b1c782d9669aa90bdcecbb51becae'),(88,40,'_wp_attached_file','2022/05/Causes-2-e1652688232457.jpg'),(89,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:35:\"2022/05/Causes-2-e1652688232457.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Causes-2-e1652688232457-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Causes-2-e1652688232457-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Causes-2-e1652688232457-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(90,40,'_elementor_source_image_hash','523c78ae976ac96d3c04e514d2dce9c156608681'),(91,41,'_wp_attached_file','2022/05/causes.jpg'),(92,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:18:\"2022/05/causes.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"causes-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"causes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"causes-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(93,41,'_elementor_source_image_hash','343018494ce5468f193a1fab3417f793cf1d096e'),(94,42,'_wp_attached_file','2022/05/Image-A9QS3N7.jpg'),(95,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:25:\"2022/05/Image-A9QS3N7.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-A9QS3N7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-A9QS3N7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-A9QS3N7-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(96,42,'_elementor_source_image_hash','dae2654bfaa53af0f0670784dc8ce2cc047e793f'),(97,43,'_wp_attached_file','2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg'),(98,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:64:\"2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"hands-of-young-homeless-african-man-begging-for-food-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"hands-of-young-homeless-african-man-begging-for-food-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"hands-of-young-homeless-african-man-begging-for-food-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:66:\"hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(99,43,'_elementor_source_image_hash','59aa1ed64a543d5c107bdfe35111b001ee9f4adc'),(100,44,'_wp_attached_file','2022/05/happy-kid-W97QA6P.jpg'),(101,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1284;s:6:\"height\";i:1851;s:4:\"file\";s:29:\"2022/05/happy-kid-W97QA6P.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"happy-kid-W97QA6P-208x300.jpg\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"happy-kid-W97QA6P-710x1024.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"happy-kid-W97QA6P-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"happy-kid-W97QA6P-768x1107.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"happy-kid-W97QA6P-1065x1536.jpg\";s:5:\"width\";i:1065;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:50:\"Copyright 2016 Ashish Kumar . All rights reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(102,44,'_elementor_source_image_hash','ec9a974037afcf65cd43f8659f88fb1758243284'),(103,45,'_wp_attached_file','2022/05/portrait-of-volunteer-group-posing.jpg'),(104,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:46:\"2022/05/portrait-of-volunteer-group-posing.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"portrait-of-volunteer-group-posing-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"portrait-of-volunteer-group-posing-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"portrait-of-volunteer-group-posing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"portrait-of-volunteer-group-posing-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"portrait-of-volunteer-group-posing-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(105,45,'_elementor_source_image_hash','ea747c6a3f4ae275abe93bc1d9783815c40ad3fd'),(106,46,'_elementor_edit_mode','builder'),(107,46,'_elementor_template_type','section'),(108,46,'_elementor_version','3.6.5'),(109,47,'_elementor_edit_mode','builder'),(110,47,'_elementor_template_type','section'),(111,47,'_elementor_version','3.6.5'),(112,46,'_wp_page_template','elementor_header_footer'),(113,46,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(114,46,'_elementor_data','[{\"id\":\"7b5491c6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"227316ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45f315e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1413522e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1006254f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8d4da09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"12c36c31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"740ce7dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d9671a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3372cbb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9f630d0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f25c3c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3253c774\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"40394ab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"7bc7d77e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ae8c96c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dc931a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e6a0e07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ac0944\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"793ff519\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ebd8660\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5febb632\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"718d72fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"522537\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ba3ada7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"61b641f3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ce47e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cb3d970\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ffdb17e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55697248\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65a2cdfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ccd4082\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"257eccdc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"344e9063\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"26f2ccb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"184238c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33571055\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66785645\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa878fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d98f66e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30a61d91\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"72ef4a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20c77c32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e40f67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98bc5c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"126fa4d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"56d4c384\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78cc19a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d5f60bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78d7ca4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3267c7d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37928fb5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7319c271\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fbb319b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"13f747ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78bcba50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250abac8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d559c5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24d64802\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"69e8c6b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"25a59158\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ef05bd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1ae73f03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a1c833b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a97be53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4564555a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15d56e01\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6086a24e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1806e67f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b06b29d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ba368f\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71edec98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c29c94e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37c92d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4455cdf3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42ec164e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f1a4ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cba374b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"44ab6429\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a893e5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"14f81bcf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50e3bcad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"ab23513\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ec3f695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6957fc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c257454\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f78f731\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"232ab9d0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3541d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f5d97c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f4fcaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b0b0c33\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"677704da\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70f29267\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5475704f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33cd1812\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f405038\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bd4f4cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c111ff8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"454692a1\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fa984e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40d5b3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"486add2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71178647\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47fdd6a7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10a53e76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5533b959\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6d46905f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"494140f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"784364cf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"261c146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32b590fd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1204ddd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dd832d4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49677bb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3599bb81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49f1bde3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25254245\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"411673f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7876bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca951aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"718350e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f1d378f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e3e8e40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9ae7beb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f8ea64a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"602726a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aec768f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45947f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17560893\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744849c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"791a4eb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"497a45e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"17087eab\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"224146ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69f22b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b85ddc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11d2f4b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36690dcd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d92e6a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75817330\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f747e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738d44eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a190090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"436b8224\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"763fd78f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"74cadcb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"e9646e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(115,48,'_elementor_edit_mode','builder'),(116,48,'_elementor_template_type','section'),(117,48,'_elementor_version','3.6.5'),(118,48,'_wp_page_template','default'),(119,48,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(120,48,'_elementor_data','[{\"id\":\"7b5491c6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"227316ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45f315e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1413522e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1006254f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8d4da09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"12c36c31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"740ce7dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d9671a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3372cbb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9f630d0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f25c3c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3253c774\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"40394ab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"7bc7d77e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ae8c96c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dc931a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e6a0e07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ac0944\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"793ff519\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ebd8660\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5febb632\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"718d72fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"522537\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ba3ada7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"61b641f3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ce47e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cb3d970\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ffdb17e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55697248\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65a2cdfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ccd4082\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"257eccdc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"344e9063\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"26f2ccb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"184238c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33571055\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66785645\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa878fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d98f66e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30a61d91\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"72ef4a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20c77c32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e40f67a\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98bc5c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"126fa4d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"56d4c384\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"78cc19a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d5f60bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78d7ca4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3267c7d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37928fb5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7319c271\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fbb319b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"13f747ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78bcba50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250abac8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d559c5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24d64802\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"69e8c6b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"25a59158\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ef05bd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1ae73f03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a1c833b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a97be53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4564555a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15d56e01\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6086a24e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1806e67f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b06b29d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ba368f\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71edec98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c29c94e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37c92d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4455cdf3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42ec164e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f1a4ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cba374b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"44ab6429\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a893e5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"14f81bcf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50e3bcad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"ab23513\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ec3f695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6957fc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c257454\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f78f731\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"232ab9d0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3541d04\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f5d97c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f4fcaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b0b0c33\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"677704da\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70f29267\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5475704f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33cd1812\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f405038\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bd4f4cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c111ff8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"454692a1\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fa984e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40d5b3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"486add2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71178647\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47fdd6a7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10a53e76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5533b959\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6d46905f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"494140f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"784364cf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"261c146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32b590fd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1204ddd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dd832d4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49677bb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3599bb81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49f1bde3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25254245\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"411673f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7876bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca951aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"718350e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f1d378f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e3e8e40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9ae7beb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f8ea64a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"602726a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aec768f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45947f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17560893\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744849c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"791a4eb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"497a45e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"17087eab\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"224146ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69f22b4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b85ddc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11d2f4b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"36690dcd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d92e6a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75817330\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f747e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"738d44eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a190090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"436b8224\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"763fd78f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"74cadcb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"e9646e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(121,46,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(122,46,'envato_tk_source_kit','6'),(123,46,'envato_tk_source_index','1'),(124,49,'_wp_attached_file','2022/05/Logo2402x.png'),(125,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:335;s:4:\"file\";s:21:\"2022/05/Logo2402x.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Logo2402x-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Logo2402x-1024x272.png\";s:5:\"width\";i:1024;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Logo2402x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Logo2402x-768x204.png\";s:5:\"width\";i:768;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(126,49,'_elementor_source_image_hash','930d0f30fe1f85dfab436f465f978210be8d6d80'),(127,50,'_wp_attached_file','2022/05/logo-black402x.png'),(128,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:334;s:4:\"file\";s:26:\"2022/05/logo-black402x.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"logo-black402x-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"logo-black402x-1024x272.png\";s:5:\"width\";i:1024;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"logo-black402x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"logo-black402x-768x204.png\";s:5:\"width\";i:768;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,50,'_elementor_source_image_hash','95ee055f26708186d48e610c299b008cbd1bf99a'),(130,51,'_wp_attached_file','2022/05/Logo2@2x.png'),(131,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:335;s:4:\"file\";s:20:\"2022/05/Logo2@2x.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Logo2@2x-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Logo2@2x-1024x272.png\";s:5:\"width\";i:1024;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Logo2@2x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Logo2@2x-768x204.png\";s:5:\"width\";i:768;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(132,51,'_elementor_source_image_hash','58b1e571fa5e44c06b3490db06d98fa34793468d'),(133,52,'_elementor_edit_mode','builder'),(134,52,'_elementor_template_type','section'),(135,52,'_elementor_version','3.6.5'),(136,53,'_elementor_edit_mode','builder'),(137,53,'_elementor_template_type','section'),(138,53,'_elementor_version','3.6.5'),(139,52,'_wp_page_template','elementor_canvas'),(140,52,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(141,52,'_elementor_data','[{\"id\":\"784abcca\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#1A1A1A\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f577072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.893000000000000682121026329696178436279296875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":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\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25f429f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Logo2@2x.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"683c191d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.0859999999999985220711096189916133880615234375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fcbff2d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope2\",\"library\":\"ekiticons\"},\"title_text\":\"Email Address\",\"description_text\":\"Support@domain.com\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"653688f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"Phone Number\",\"description_text\":\"(+62) 8152 254 239\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2ede9c66\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-home2\",\"library\":\"ekiticons\"},\"title_text\":\"Our Location\",\"description_text\":\"Kuta, Bali 80361\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"1119f208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.684999999999998721023075631819665431976318359375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-end\",\"hide_tablet\":\"hidden-tablet\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71845087\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10cdce6e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21ee4fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e57ebff\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":4,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38b8d89f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.1989999999999980673237587325274944305419921875,\"_inline_size_mobile\":15,\"_inline_size_tablet\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"93d24ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.754999999999999005240169935859739780426025390625,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\",\"_inline_size_mobile\":85,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"156f4b2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow Us :\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#6F747E\",\"__globals__\":{\"text_color\":\"\"},\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(142,54,'_elementor_edit_mode','builder'),(143,54,'_elementor_template_type','section'),(144,54,'_elementor_version','3.6.5'),(145,54,'_wp_page_template','default'),(146,54,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(147,54,'_elementor_data','[{\"id\":\"784abcca\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#1A1A1A\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f577072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.893000000000000682121026329696178436279296875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":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\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25f429f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Logo2@2x.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"683c191d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.0859999999999985220711096189916133880615234375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fcbff2d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope2\",\"library\":\"ekiticons\"},\"title_text\":\"Email Address\",\"description_text\":\"Support@domain.com\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"653688f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"Phone Number\",\"description_text\":\"(+62) 8152 254 239\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2ede9c66\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-home2\",\"library\":\"ekiticons\"},\"title_text\":\"Our Location\",\"description_text\":\"Kuta, Bali 80361\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"1119f208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.684999999999998721023075631819665431976318359375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-end\",\"hide_tablet\":\"hidden-tablet\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71845087\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10cdce6e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21ee4fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e57ebff\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":4,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38b8d89f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.1989999999999980673237587325274944305419921875,\"_inline_size_mobile\":15,\"_inline_size_tablet\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"93d24ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.754999999999999005240169935859739780426025390625,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\",\"_inline_size_mobile\":85,\"content_position_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"156f4b2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow Us :\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#6F747E\",\"__globals__\":{\"text_color\":\"\"},\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(148,52,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(149,52,'envato_tk_source_kit','6'),(150,52,'envato_tk_source_index','17'),(158,56,'_elementor_edit_mode','builder'),(159,56,'_elementor_template_type','section'),(160,56,'_elementor_version','3.6.5'),(161,56,'_elementor_data','[{\"id\":\"38bfb0e0\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19657ba8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38c54d5d\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"631376b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"30c99aaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16.66199999999999903366187936626374721527099609375,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51ae65b0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"ae2af7c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"4193ba8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"32ca75b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":12},\"hover_primary_color\":\"#212121\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(162,57,'_elementor_edit_mode','builder'),(163,57,'_elementor_template_type','section'),(164,57,'_elementor_version','3.6.5'),(165,57,'_elementor_data','[{\"id\":\"38bfb0e0\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19657ba8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38c54d5d\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"631376b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"30c99aaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16.66199999999999903366187936626374721527099609375,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51ae65b0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"ae2af7c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"4193ba8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"32ca75b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":12},\"hover_primary_color\":\"#212121\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(166,56,'_elementor_page_assets','a:0:{}'),(167,56,'envato_elements_download_event','69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9-6812e0ebdea7c8ccaeafaaa60ac8c626'),(179,65,'_elementor_edit_mode','builder'),(180,65,'_elementor_template_type','wp-page'),(181,65,'_elementor_version','3.6.5'),(182,65,'_wp_page_template','elementor_canvas'),(183,65,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(184,65,'_elementor_data','[]'),(185,65,'_elementor_page_assets','a:0:{}'),(186,66,'_elementor_edit_mode','builder'),(187,66,'_elementor_template_type','wp-page'),(188,66,'_elementor_version','3.6.5'),(189,66,'_wp_page_template','elementor_canvas'),(190,66,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(191,66,'_elementor_data','[]'),(192,66,'_elementor_page_assets','a:0:{}'),(193,67,'_elementor_edit_mode','builder'),(194,67,'_elementor_template_type','wp-page'),(195,67,'_elementor_version','3.6.5'),(196,67,'_wp_page_template','elementor_canvas'),(197,67,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(198,67,'_elementor_data','[{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16.66199999999999903366187936626374721527099609375,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"155a40e2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"ae2af7c\"},{\"social\":\"fa fa-twitter\",\"_id\":\"4193ba8\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"32ca75b\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":12},\"hover_primary_color\":\"#212121\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdd679\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#1A1A1A\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"75de6585\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.893000000000000682121026329696178436279296875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":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}},\"elements\":[{\"id\":\"7575f153\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Logo2@2x.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d77507b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.0859999999999985220711096189916133880615234375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"281c8777\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope2\",\"library\":\"ekiticons\"},\"title_text\":\"Email Address\",\"description_text\":\"Support@domain.com\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1d29aaa2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"Phone Number\",\"description_text\":\"(+62) 8152 254 239\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c3b0335\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-home2\",\"library\":\"ekiticons\"},\"title_text\":\"Our Location\",\"description_text\":\"Kuta, Bali 80361\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"6d538bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.684999999999998721023075631819665431976318359375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-end\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"13656e0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22905e74\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"3fbd9f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7882909\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":4,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"240ac253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.1989999999999980673237587325274944305419921875,\"_inline_size_mobile\":15,\"_inline_size_tablet\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"3f8ba878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.754999999999999005240169935859739780426025390625,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\",\"_inline_size_mobile\":85,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"903eb40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow Us :\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#6F747E\",\"__globals__\":{\"text_color\":\"\"},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(199,67,'_elementor_page_assets','a:0:{}'),(200,11,'_elementor_pro_version','3.6.4'),(202,68,'_wp_trash_meta_status','publish'),(203,68,'_wp_trash_meta_time','1652679845'),(204,70,'_menu_item_type','post_type'),(205,70,'_menu_item_menu_item_parent','0'),(206,70,'_menu_item_object_id','29'),(207,70,'_menu_item_object','page'),(208,70,'_menu_item_target',''),(209,70,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(210,70,'_menu_item_xfn',''),(211,70,'_menu_item_url',''),(213,71,'_menu_item_type','post_type'),(214,71,'_menu_item_menu_item_parent','0'),(215,71,'_menu_item_object_id','27'),(216,71,'_menu_item_object','page'),(217,71,'_menu_item_target',''),(218,71,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(219,71,'_menu_item_xfn',''),(220,71,'_menu_item_url',''),(222,72,'_menu_item_type','post_type'),(223,72,'_menu_item_menu_item_parent','0'),(224,72,'_menu_item_object_id','25'),(225,72,'_menu_item_object','page'),(226,72,'_menu_item_target',''),(227,72,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(228,72,'_menu_item_xfn',''),(229,72,'_menu_item_url',''),(231,73,'_menu_item_type','post_type'),(232,73,'_menu_item_menu_item_parent','0'),(233,73,'_menu_item_object_id','23'),(234,73,'_menu_item_object','page'),(235,73,'_menu_item_target',''),(236,73,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(237,73,'_menu_item_xfn',''),(238,73,'_menu_item_url',''),(240,74,'_menu_item_type','post_type'),(241,74,'_menu_item_menu_item_parent','0'),(242,74,'_menu_item_object_id','21'),(243,74,'_menu_item_object','page'),(244,74,'_menu_item_target',''),(245,74,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(246,74,'_menu_item_xfn',''),(247,74,'_menu_item_url',''),(249,75,'_menu_item_type','post_type'),(250,75,'_menu_item_menu_item_parent','0'),(251,75,'_menu_item_object_id','19'),(252,75,'_menu_item_object','page'),(253,75,'_menu_item_target',''),(254,75,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(255,75,'_menu_item_xfn',''),(256,75,'_menu_item_url',''),(258,76,'_menu_item_type','post_type'),(259,76,'_menu_item_menu_item_parent','0'),(260,76,'_menu_item_object_id','17'),(261,76,'_menu_item_object','page'),(262,76,'_menu_item_target',''),(263,76,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(264,76,'_menu_item_xfn',''),(265,76,'_menu_item_url',''),(267,77,'_menu_item_type','post_type'),(268,77,'_menu_item_menu_item_parent','0'),(269,77,'_menu_item_object_id','15'),(270,77,'_menu_item_object','page'),(271,77,'_menu_item_target',''),(272,77,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(273,77,'_menu_item_xfn',''),(274,77,'_menu_item_url',''),(276,78,'_elementor_edit_mode','builder'),(277,78,'_elementor_template_type','section'),(278,78,'_elementor_version','3.5.6'),(279,78,'_elementor_pro_version','3.6.4'),(280,78,'_elementor_data','[{\"id\":\"1d0b6446\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ef5af2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41e9eb7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":5},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6948136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55fdbbdc\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"35e5bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d8865b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-github\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8206083\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-bitbucket\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dccfaf9\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6be48e2c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#2c93f4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2c93f5\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":92},\"background_color_b\":\"rgba(47,187,197,0)\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1642fe0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.946999999999999175770426518283784389495849609375,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6caaa441\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOGO\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"282493f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.0529999999999972715158946812152862548828125,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f20acb0\",\"elType\":\"widget\",\"settings\":{\"pointer\":\"background\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover_pointer_bg\":\"#2b89ff\",\"pointer_color_menu_item_hover\":\"#f1f1f1\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":31},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"full_width\":\"stretch\",\"toggle_align\":\"left\",\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":13},\"toggle_color\":\"#ffffff\",\"menu\":\"demo-menu\",\"menu_typography_font_family\":\"Montserrat\",\"align_items\":\"right\",\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(281,79,'_elementor_edit_mode','builder'),(282,79,'_elementor_template_type','section'),(283,79,'_elementor_version','3.5.6'),(284,79,'_elementor_pro_version','3.6.4'),(285,79,'_elementor_data','[{\"id\":\"1d0b6446\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ef5af2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41e9eb7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":5},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6948136f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55fdbbdc\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"35e5bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d8865b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-github\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8206083\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-bitbucket\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dccfaf9\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6be48e2c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#2c93f4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2c93f5\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":92},\"background_color_b\":\"rgba(47,187,197,0)\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1642fe0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.946999999999999175770426518283784389495849609375,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6caaa441\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOGO\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"282493f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.0529999999999972715158946812152862548828125,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f20acb0\",\"elType\":\"widget\",\"settings\":{\"pointer\":\"background\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover_pointer_bg\":\"#2b89ff\",\"pointer_color_menu_item_hover\":\"#f1f1f1\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":31},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"full_width\":\"stretch\",\"toggle_align\":\"left\",\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":13},\"toggle_color\":\"#ffffff\",\"menu\":\"demo-menu\",\"menu_typography_font_family\":\"Montserrat\",\"align_items\":\"right\",\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(286,78,'_elementor_page_assets','a:0:{}'),(287,78,'envato_elements_download_event','104-3-acbd8ca7eb3c3f4d0d9a38e9c0159198-6812e0ebdea7c8ccaeafaaa60ac8c626'),(297,81,'_elementor_edit_mode','builder'),(298,81,'_elementor_template_type','wp-page'),(299,81,'_elementor_version','3.5.6'),(300,81,'_wp_page_template','elementor_canvas'),(301,81,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(302,81,'_elementor_data','[{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16.66199999999999903366187936626374721527099609375,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"155a40e2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"ae2af7c\"},{\"social\":\"fa fa-twitter\",\"_id\":\"4193ba8\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"32ca75b\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":12},\"hover_primary_color\":\"#212121\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdd679\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#1A1A1A\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"75de6585\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.893000000000000682121026329696178436279296875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":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}},\"elements\":[{\"id\":\"7575f153\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Logo2@2x.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d77507b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.0859999999999985220711096189916133880615234375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"281c8777\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope2\",\"library\":\"ekiticons\"},\"title_text\":\"Email Address\",\"description_text\":\"Support@domain.com\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1d29aaa2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"Phone Number\",\"description_text\":\"(+62) 8152 254 239\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c3b0335\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-home2\",\"library\":\"ekiticons\"},\"title_text\":\"Our Location\",\"description_text\":\"Kuta, Bali 80361\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"6d538bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.684999999999998721023075631819665431976318359375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-end\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"13656e0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22905e74\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"3fbd9f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7882909\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":4,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"240ac253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.1989999999999980673237587325274944305419921875,\"_inline_size_mobile\":15,\"_inline_size_tablet\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"3f8ba878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.754999999999999005240169935859739780426025390625,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\",\"_inline_size_mobile\":85,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"903eb40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow Us :\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#6F747E\",\"__globals__\":{\"text_color\":\"\"},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(303,81,'_elementor_page_assets','a:1:{s:6:\"styles\";a:74:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";}}'),(304,81,'_elementor_pro_version','3.6.4'),(305,82,'_elementor_edit_mode','builder'),(306,82,'_elementor_template_type','wp-page'),(307,82,'_elementor_version','3.5.6'),(308,82,'_wp_page_template','elementor_canvas'),(309,82,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (310,82,'_elementor_data','[{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.667000000000001591615728102624416351318359375,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16.66199999999999903366187936626374721527099609375,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"155a40e2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"ae2af7c\"},{\"social\":\"fa fa-twitter\",\"_id\":\"4193ba8\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"32ca75b\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"icon_spacing\":{\"unit\":\"px\",\"size\":12},\"hover_primary_color\":\"#212121\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24fdd679\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#1A1A1A\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0},\"elements\":[{\"id\":\"75de6585\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.893000000000000682121026329696178436279296875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":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}},\"elements\":[{\"id\":\"7575f153\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Logo2@2x.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d77507b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.0859999999999985220711096189916133880615234375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-start\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"281c8777\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope2\",\"library\":\"ekiticons\"},\"title_text\":\"Email Address\",\"description_text\":\"Support@domain.com\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1d29aaa2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"Phone Number\",\"description_text\":\"(+62) 8152 254 239\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c3b0335\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-home2\",\"library\":\"ekiticons\"},\"title_text\":\"Our Location\",\"description_text\":\"Kuta, Bali 80361\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Noto Serif\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#FCBC45\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"6d538bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.684999999999998721023075631819665431976318359375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"align\":\"flex-end\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"13656e0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22905e74\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"3fbd9f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7882909\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":4,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"240ac253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.1989999999999980673237587325274944305419921875,\"_inline_size_mobile\":15,\"_inline_size_tablet\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"3f8ba878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.754999999999999005240169935859739780426025390625,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"align_tablet\":\"flex-end\",\"_inline_size_mobile\":85,\"content_position_mobile\":\"center\"},\"elements\":[{\"id\":\"903eb40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow Us :\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#6F747E\",\"__globals__\":{\"text_color\":\"\"},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(311,82,'_elementor_page_assets','a:1:{s:6:\"styles\";a:74:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";}}'),(312,82,'_elementor_pro_version','3.6.4'),(313,83,'_elementor_edit_mode','builder'),(314,83,'_elementor_template_type','wp-page'),(315,83,'_elementor_version','3.5.6'),(316,83,'_wp_page_template','elementor_canvas'),(317,83,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(318,83,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"center\",\"size\":\"xs\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"70\",\"bottom\":\"12\",\"left\":\"70\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"-11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(319,83,'_elementor_page_assets','a:1:{s:6:\"styles\";a:74:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";}}'),(320,83,'_elementor_pro_version','3.6.4'),(321,84,'_elementor_edit_mode','builder'),(322,84,'_elementor_template_type','wp-page'),(323,84,'_elementor_version','3.5.6'),(324,84,'_wp_page_template','elementor_canvas'),(325,84,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(326,84,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"center\",\"size\":\"xs\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"70\",\"bottom\":\"12\",\"left\":\"70\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"-11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(327,84,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(328,84,'_elementor_pro_version','3.6.4'),(329,85,'_elementor_edit_mode','builder'),(330,85,'_elementor_template_type','wp-page'),(331,85,'_elementor_version','3.5.6'),(332,85,'_wp_page_template','elementor_canvas'),(333,85,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(334,85,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"center\",\"size\":\"xs\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"70\",\"bottom\":\"12\",\"left\":\"70\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"-11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(335,85,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(336,85,'_elementor_pro_version','3.6.4'),(337,86,'_elementor_edit_mode','builder'),(338,86,'_elementor_template_type','wp-page'),(339,86,'_elementor_version','3.5.6'),(340,86,'_wp_page_template','elementor_canvas'),(341,86,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(342,86,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(343,86,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(344,86,'_elementor_pro_version','3.6.4'),(345,87,'_wp_attached_file','2022/05/josh-withers-525892-unsplash.jpg'),(346,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1874;s:4:\"file\";s:40:\"2022/05/josh-withers-525892-unsplash.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"josh-withers-525892-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"josh-withers-525892-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"josh-withers-525892-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"josh-withers-525892-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"josh-withers-525892-unsplash-1536x1151.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"josh-withers-525892-unsplash-2048x1535.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"josh-withers-525892-unsplash-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:42:\"josh-withers-525892-unsplash-1980x1484.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:1484;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(347,87,'_elementor_source_image_hash','42d5bace00986e73ee555624c9ac3b4da79d2843'),(348,88,'_elementor_edit_mode','builder'),(349,88,'_elementor_template_type','section'),(350,88,'_elementor_version','3.5.6'),(351,88,'_elementor_pro_version','3.6.4'),(352,88,'_elementor_data','[{\"id\":\"329fa47d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/josh-withers-525892-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e21b9a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44801ff6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sub heading\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":7},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"040\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2135995b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HE<br>RO\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":12},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72b8b189\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem donec massa sapien faucibus et. In nisl nisi scelerisque eu ultrices vitae. Ac odio tempor orci dapibus ultrices in iaculis nunc sed. Sit amet volutpat consequat mauris.\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74ebabc5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Show More\",\"button_text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(223,98,54,0.8)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"icon\":\"fa fa-caret-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_hover_border_color\":\"#ffffff\",\"selected_icon\":{\"value\":\"fas fa-caret-right\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"484af86c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20ab2f3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(353,89,'_elementor_edit_mode','builder'),(354,89,'_elementor_template_type','section'),(355,89,'_elementor_version','3.5.6'),(356,89,'_elementor_pro_version','3.6.4'),(357,89,'_elementor_data','[{\"id\":\"329fa47d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/josh-withers-525892-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e21b9a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44801ff6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sub heading\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":7},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"040\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2135995b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HE<br>RO\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":12},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72b8b189\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem donec massa sapien faucibus et. In nisl nisi scelerisque eu ultrices vitae. Ac odio tempor orci dapibus ultrices in iaculis nunc sed. Sit amet volutpat consequat mauris.\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74ebabc5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Show More\",\"button_text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(223,98,54,0.8)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"icon\":\"fa fa-caret-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_hover_border_color\":\"#ffffff\",\"selected_icon\":{\"value\":\"fas fa-caret-right\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"484af86c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20ab2f3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(358,88,'_elementor_page_assets','a:0:{}'),(359,88,'envato_elements_download_event','135-3-c665d4805631b9a8bf464e65129b2f58-f549d6f41a8696611903130bfd21bd6d'),(368,93,'_elementor_edit_mode','builder'),(369,93,'_elementor_template_type','wp-page'),(370,93,'_elementor_version','3.5.6'),(371,93,'_wp_page_template','elementor_canvas'),(372,93,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(373,93,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(374,93,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(375,93,'_elementor_pro_version','3.6.4'),(376,94,'_elementor_edit_mode','builder'),(377,94,'_elementor_template_type','wp-page'),(378,94,'_elementor_version','3.5.6'),(379,94,'_wp_page_template','elementor_canvas'),(380,94,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(381,94,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(382,94,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(383,94,'_elementor_pro_version','3.6.4'),(384,95,'_elementor_edit_mode','builder'),(385,95,'_elementor_template_type','wp-page'),(386,95,'_elementor_version','3.5.6'),(387,95,'_wp_page_template','elementor_canvas'),(388,95,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(389,95,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":47.405000000000001136868377216160297393798828125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c192c8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Show More\",\"button_text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(223,98,54,0.8)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"icon\":\"fa fa-caret-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_hover_border_color\":\"#ffffff\",\"selected_icon\":{\"value\":\"fas fa-caret-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"f18253f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":47.11399999999999721467247582040727138519287109375,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"c9944ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"653a1512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.8620000000000000994759830064140260219573974609375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2b29d3fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(390,95,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(391,95,'_elementor_pro_version','3.6.4'),(400,104,'_wp_page_template','crowdfundly-template.php'),(401,104,'crowdfundly_organization_page_id','all'),(402,105,'_wp_page_template','crowdfundly-template.php'),(403,105,'crowdfundly_all_campaigns_page_id','all'),(404,106,'_wp_page_template','crowdfundly-template.php'),(405,106,'crowdfundly_single_campaign_page_id','all'),(406,110,'_wp_attached_file','2022/05/hector-martinez-110928-unsplash.jpg'),(407,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1288;s:4:\"file\";s:43:\"2022/05/hector-martinez-110928-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"hector-martinez-110928-unsplash-300x242.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"hector-martinez-110928-unsplash-1024x824.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:824;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"hector-martinez-110928-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"hector-martinez-110928-unsplash-768x618.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"hector-martinez-110928-unsplash-1536x1236.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"hector-martinez-110928-unsplash-1200x966.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:966;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(408,110,'_elementor_source_image_hash','fff56b83d7f85bbd94e71e00ddec834735b57daa'),(409,111,'_elementor_edit_mode','builder'),(410,111,'_elementor_template_type','section'),(411,111,'_elementor_version','3.5.6'),(412,111,'_elementor_pro_version','3.6.4');
INSERT INTO `wp_postmeta` VALUES (413,111,'_elementor_data','[{\"id\":\"539d0e2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1040},\"background_background\":\"classic\",\"background_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hector-martinez-110928-unsplash.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":75},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"926e18a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b127dd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26c14780\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"72db7d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d516be5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e000081\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3b9e7556\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64058e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"267e132f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Help Center\",\"icon\":\"\",\"_id\":\"48ff73c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"a26609a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Forums\",\"icon\":\"\",\"_id\":\"050eab3\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Blog\",\"icon\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"87b4f73\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Meetups\",\"icon\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"712e7d2\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1f3d994a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"158d6ae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Company Inc.\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4311dc7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"text_color\":\"rgba(255,255,255,0.7)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8125},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.61699999999999999289457264239899814128875732421875},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_animation_delay\":250,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(414,112,'_elementor_edit_mode','builder'),(415,112,'_elementor_template_type','section'),(416,112,'_elementor_version','3.5.6'),(417,112,'_elementor_pro_version','3.6.4'),(418,112,'_elementor_data','[{\"id\":\"539d0e2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1040},\"background_background\":\"classic\",\"background_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hector-martinez-110928-unsplash.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":75},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"926e18a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b127dd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26c14780\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"72db7d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d516be5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e000081\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3b9e7556\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64058e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"267e132f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Help Center\",\"icon\":\"\",\"_id\":\"48ff73c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"a26609a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Forums\",\"icon\":\"\",\"_id\":\"050eab3\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Blog\",\"icon\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"87b4f73\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Meetups\",\"icon\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"712e7d2\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1f3d994a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"158d6ae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Company Inc.\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4311dc7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"text_color\":\"rgba(255,255,255,0.7)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8125},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.61699999999999999289457264239899814128875732421875},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_animation_delay\":250,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(419,111,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(420,111,'envato_elements_download_event','144-3-3a7d335f39a8579c20cdf02f8d462582-2632398b8d87c2c7ea821fd1da9f8d68'),(421,114,'_elementor_edit_mode','builder'),(422,114,'_elementor_template_type','section'),(423,114,'_elementor_version','3.5.6'),(424,114,'_elementor_pro_version','3.6.4'),(425,114,'_elementor_data','[{\"id\":\"6a90abef\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cbaabc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"631e9994\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55da3cc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"388d6062\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(426,115,'_elementor_edit_mode','builder'),(427,115,'_elementor_template_type','section'),(428,115,'_elementor_version','3.5.6'),(429,115,'_elementor_pro_version','3.6.4'),(430,115,'_elementor_data','[{\"id\":\"6a90abef\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cbaabc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"631e9994\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55da3cc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"388d6062\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(431,114,'_elementor_page_assets','a:0:{}'),(432,114,'envato_elements_download_event','72-3-34d2cc762876498c8f6be5405a48e6e2-254ffd9d75329549830d73c3cf81b218'),(433,117,'_elementor_edit_mode','builder'),(434,117,'_elementor_template_type','wp-page'),(435,117,'_elementor_version','3.5.6'),(436,117,'_wp_page_template','elementor_canvas'),(437,117,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(438,117,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":47.405000000000001136868377216160297393798828125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c192c8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Show More\",\"button_text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(223,98,54,0.8)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"icon\":\"fa fa-caret-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_hover_border_color\":\"#ffffff\",\"selected_icon\":{\"value\":\"fas fa-caret-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"f18253f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":47.11399999999999721467247582040727138519287109375,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"c9944ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"653a1512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.8620000000000000994759830064140260219573974609375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2b29d3fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(439,117,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(440,117,'_elementor_pro_version','3.6.4'),(441,118,'_elementor_edit_mode','builder'),(442,118,'_elementor_template_type','wp-page'),(443,118,'_elementor_version','3.5.6'),(444,118,'_wp_page_template','elementor_canvas'),(445,118,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(446,118,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"61\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":47.405000000000001136868377216160297393798828125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c192c8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Show More\",\"button_text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(223,98,54,0.8)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"icon\":\"fa fa-caret-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_hover_border_color\":\"#ffffff\",\"selected_icon\":{\"value\":\"fas fa-caret-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.125,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"f18253f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":47.11399999999999721467247582040727138519287109375,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"c9944ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"653a1512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":2.8620000000000000994759830064140260219573974609375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2b29d3fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d136929\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"320\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-66\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-143\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"243\",\"right\":\"10\",\"bottom\":\"143\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\"},\"background_position\":\"bottom center\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_overlay_color_b\":\"#FCBC45A1\",\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5416c14a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"21dff445\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"315970de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7faafaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c26ff2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate  Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"106863f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e50935a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Video\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\"},\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47be0211\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"616649d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.97800000000000153477230924181640148162841796875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"2c8020fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"490b2157\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1749c7f8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12861de3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"745aa458\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7686e810\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2f6d36\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a82d7c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356bfb9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cf79d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"41194057\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"6b29e0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(447,118,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(448,118,'_elementor_pro_version','3.6.4'),(449,119,'_elementor_edit_mode','builder'),(450,119,'_elementor_template_type','wp-page'),(451,119,'_elementor_version','3.5.6'),(452,119,'_wp_page_template','elementor_canvas'),(453,119,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(454,119,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5d5038cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"40c704b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cf9d93\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"primary-menu\",\"sg_menu_direction\":\"block\",\"sg_menu_sub_position\":\"bottom\",\"sg_menu_breakpoint\":\"mobile\",\"st_menu_wrapper_width_responsive\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ed1fc1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_column_responsive\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sg_setting_image_height_responsive\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"sg_filter_all_label\":\"All\",\"sg_filter_list\":[{\"sg_filter_list_name\":\"Gallery Item\",\"_id\":\"b1dafc8\"}],\"sg_gallery_list\":[{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"1b84e34\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"fca6eaa\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"2e37a99\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"21e773e\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"40a99c9\"}],\"sg_loadmore_button_text\":\"Load More\",\"sg_loadmore_nomore_text\":\"No More Item\",\"st_search_form_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"jkit_gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(455,119,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(456,119,'_elementor_pro_version','3.6.4'),(457,120,'_elementor_edit_mode','builder'),(458,120,'_elementor_template_type','wp-page'),(459,120,'_elementor_version','3.5.6'),(460,120,'_wp_page_template','elementor_canvas'),(461,120,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(462,120,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5d5038cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"40c704b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cf9d93\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"primary-menu\",\"sg_menu_direction\":\"block\",\"sg_menu_sub_position\":\"bottom\",\"sg_menu_breakpoint\":\"mobile\",\"st_menu_wrapper_width_responsive\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ed1fc1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_column_responsive\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sg_setting_image_height_responsive\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"sg_filter_all_label\":\"All\",\"sg_filter_list\":[{\"sg_filter_list_name\":\"Gallery Item\",\"_id\":\"b1dafc8\"}],\"sg_gallery_list\":[{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"1b84e34\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"fca6eaa\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"2e37a99\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"21e773e\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"40a99c9\"}],\"sg_loadmore_button_text\":\"Load More\",\"sg_loadmore_nomore_text\":\"No More Item\",\"st_search_form_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"jkit_gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(463,120,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(464,120,'_elementor_pro_version','3.6.4'),(465,121,'_elementor_edit_mode','builder'),(466,121,'_elementor_template_type','wp-page'),(467,121,'_elementor_version','3.5.6'),(468,121,'_wp_page_template','elementor_canvas'),(469,121,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(470,121,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}]},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5d5038cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"40c704b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cf9d93\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"primary-menu\",\"sg_menu_direction\":\"block\",\"sg_menu_sub_position\":\"bottom\",\"sg_menu_breakpoint\":\"mobile\",\"st_menu_wrapper_width_responsive\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ed1fc1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_column_responsive\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sg_setting_image_height_responsive\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"sg_filter_all_label\":\"All\",\"sg_filter_list\":[{\"sg_filter_list_name\":\"Gallery Item\",\"_id\":\"b1dafc8\"}],\"sg_gallery_list\":[{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"1b84e34\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"fca6eaa\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"2e37a99\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"21e773e\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"40a99c9\"}],\"sg_loadmore_button_text\":\"Load More\",\"sg_loadmore_nomore_text\":\"No More Item\",\"st_search_form_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"jkit_gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(471,121,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(472,121,'_elementor_pro_version','3.6.4'),(473,122,'_elementor_edit_mode','builder'),(474,122,'_elementor_template_type','wp-page'),(475,122,'_elementor_version','3.5.6'),(476,122,'_wp_page_template','elementor_canvas'),(477,122,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(478,122,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5d5038cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"40c704b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cf9d93\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"primary-menu\",\"sg_menu_direction\":\"block\",\"sg_menu_sub_position\":\"bottom\",\"sg_menu_breakpoint\":\"mobile\",\"st_menu_wrapper_width_responsive\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ed1fc1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_column_responsive\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sg_setting_image_height_responsive\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"sg_filter_all_label\":\"All\",\"sg_filter_list\":[{\"sg_filter_list_name\":\"Gallery Item\",\"_id\":\"b1dafc8\"}],\"sg_gallery_list\":[{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"1b84e34\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"fca6eaa\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"2e37a99\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"21e773e\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"40a99c9\"}],\"sg_loadmore_button_text\":\"Load More\",\"sg_loadmore_nomore_text\":\"No More Item\",\"st_search_form_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"jkit_gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(479,122,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(480,122,'_elementor_pro_version','3.6.4'),(482,123,'_elementor_edit_mode','builder'),(483,123,'_elementor_template_type','section'),(484,123,'_elementor_version','3.5.6'),(485,123,'_elementor_pro_version','3.6.4'),(486,123,'_elementor_data','[{\"id\":\"1ece8f92\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#2a75ff\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cd65afd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.53699999999999903366187936626374721527099609375,\"_inline_size_tablet\":20,\"_inline_size_mobile\":60,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3791e4ef\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"layout\":\"vertical\",\"align_items\":\"left\",\"dropdown\":\"mobile\",\"toggle\":\"\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Muli\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#ffffff\",\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"rgba(0,0,0,0)\",\"background_color_dropdown_item_hover\":\"#0a5fff\",\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":0},\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":1},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"58bc94c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.0979999999999989768184605054557323455810546875,\"_inline_size_tablet\":20,\"_inline_size_mobile\":40,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c6c57b8\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu-2\",\"layout\":\"vertical\",\"align_items\":\"left\",\"dropdown\":\"mobile\",\"toggle\":\"\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Muli\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#ffffff\",\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"rgba(0,0,0,0)\",\"background_color_dropdown_item_hover\":\"#0a5fff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":1},\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":0},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"2949cd6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"381738b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"746450f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"378caf1f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"field_value\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_width\":\"33\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(487,124,'_elementor_edit_mode','builder'),(488,124,'_elementor_template_type','section'),(489,124,'_elementor_version','3.5.6'),(490,124,'_elementor_pro_version','3.6.4'),(491,124,'_elementor_data','[{\"id\":\"1ece8f92\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#2a75ff\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cd65afd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.53699999999999903366187936626374721527099609375,\"_inline_size_tablet\":20,\"_inline_size_mobile\":60,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3791e4ef\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"layout\":\"vertical\",\"align_items\":\"left\",\"dropdown\":\"mobile\",\"toggle\":\"\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Muli\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#ffffff\",\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"rgba(0,0,0,0)\",\"background_color_dropdown_item_hover\":\"#0a5fff\",\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":0},\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":1},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"58bc94c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.0979999999999989768184605054557323455810546875,\"_inline_size_tablet\":20,\"_inline_size_mobile\":40,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c6c57b8\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu-2\",\"layout\":\"vertical\",\"align_items\":\"left\",\"dropdown\":\"mobile\",\"toggle\":\"\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Muli\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#ffffff\",\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"rgba(0,0,0,0)\",\"background_color_dropdown_item_hover\":\"#0a5fff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":1},\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":0},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"2949cd6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.36099999999999710098563809879124164581298828125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"381738b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"746450f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"378caf1f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"field_value\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_width\":\"33\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(492,123,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(493,123,'envato_elements_download_event','143-3-7969bb877702491bc5ca272e536ada9d-fb4d8b923f119ae99abb98223878c2e7'),(494,126,'_elementor_edit_mode','builder'),(495,126,'_elementor_template_type','wp-page'),(496,126,'_elementor_version','3.5.6'),(497,126,'_wp_page_template','elementor_canvas'),(498,126,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(499,126,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5d5038cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"40c704b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cf9d93\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"primary-menu\",\"sg_menu_direction\":\"block\",\"sg_menu_sub_position\":\"bottom\",\"sg_menu_breakpoint\":\"mobile\",\"st_menu_wrapper_width_responsive\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ed1fc1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_column_responsive\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sg_setting_image_height_responsive\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"sg_filter_all_label\":\"All\",\"sg_filter_list\":[{\"sg_filter_list_name\":\"Gallery Item\",\"_id\":\"b1dafc8\"}],\"sg_gallery_list\":[{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"1b84e34\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"fca6eaa\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"2e37a99\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"21e773e\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"40a99c9\"}],\"sg_loadmore_button_text\":\"Load More\",\"sg_loadmore_nomore_text\":\"No More Item\",\"st_search_form_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"jkit_gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(500,126,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(501,126,'_elementor_pro_version','3.6.4'),(503,127,'_elementor_edit_mode','builder'),(504,127,'_elementor_template_type','wp-page'),(505,127,'_elementor_version','3.5.6'),(506,127,'_wp_page_template','elementor_canvas'),(507,127,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (508,127,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5d5038cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":300,\"_inline_size_tablet\":18,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"40c704b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links List\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cf9d93\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"primary-menu\",\"sg_menu_direction\":\"block\",\"sg_menu_sub_position\":\"bottom\",\"sg_menu_breakpoint\":\"mobile\",\"st_menu_wrapper_width_responsive\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ed1fc1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_column_responsive\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sg_setting_image_height_responsive\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"sg_filter_all_label\":\"All\",\"sg_filter_list\":[{\"sg_filter_list_name\":\"Gallery Item\",\"_id\":\"b1dafc8\"}],\"sg_gallery_list\":[{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"1b84e34\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"fca6eaa\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"2e37a99\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"21e773e\"},{\"sg_gallery_list_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"40a99c9\"}],\"sg_loadmore_button_text\":\"Load More\",\"sg_loadmore_nomore_text\":\"No More Item\",\"st_search_form_placeholder\":\"Search Gallery Item...\"},\"elements\":[],\"widgetType\":\"jkit_gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(509,127,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(510,127,'_elementor_pro_version','3.6.4'),(512,128,'_elementor_edit_mode','builder'),(513,128,'_elementor_template_type','wp-page'),(514,128,'_elementor_version','3.5.6'),(515,128,'_wp_page_template','elementor_canvas'),(516,128,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(517,128,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(518,128,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(519,128,'_elementor_pro_version','3.6.4'),(532,133,'_elementor_edit_mode','builder'),(533,133,'_elementor_template_type','section'),(534,133,'_elementor_version','3.6.5'),(535,133,'_elementor_pro_version','3.6.4'),(536,133,'_elementor_data','[{\"id\":\"14a6327b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":50},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77e18142\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41780776\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"right\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cf1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67651493\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"align_items\":\"left\",\"full_width\":\"stretch\",\"text_align\":\"center\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Jost\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":11},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#54595f\",\"pointer_color_menu_item_hover\":\"#54595f\",\"color_menu_item_active\":\"#54595f\",\"color_dropdown_item\":\"#c4b583\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#c4b583\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"dropdown_typography_font_weight\":\"600\",\"dropdown_typography_text_transform\":\"uppercase\",\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":56},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":10},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"#c4b583\",\"toggle_border_radius\":{\"unit\":\"px\",\"size\":100},\"dropdown\":\"none\",\"toggle\":\"\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"},\"color_menu_item_hover\":\"#00000082\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(537,134,'_elementor_edit_mode','builder'),(538,134,'_elementor_template_type','section'),(539,134,'_elementor_version','3.6.5'),(540,134,'_elementor_pro_version','3.6.4'),(541,134,'_elementor_data','[{\"id\":\"14a6327b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":50},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77e18142\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41780776\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"right\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cf1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67651493\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"align_items\":\"left\",\"full_width\":\"stretch\",\"text_align\":\"center\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Jost\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":11},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item\":\"#54595f\",\"pointer_color_menu_item_hover\":\"#54595f\",\"color_menu_item_active\":\"#54595f\",\"color_dropdown_item\":\"#c4b583\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#c4b583\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"dropdown_typography_font_weight\":\"600\",\"dropdown_typography_text_transform\":\"uppercase\",\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":56},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":10},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"#c4b583\",\"toggle_border_radius\":{\"unit\":\"px\",\"size\":100},\"dropdown\":\"none\",\"toggle\":\"\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"},\"color_menu_item_hover\":\"#00000082\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(542,133,'_elementor_page_assets','a:0:{}'),(543,133,'envato_elements_download_event','105-3-0fb64e69c49a8e10692d28840c54ef95-6f08bbe821168df88cb9fcfc80facf8b'),(544,136,'_elementor_edit_mode','builder'),(545,136,'_elementor_template_type','wp-page'),(546,136,'_elementor_version','3.5.6'),(547,136,'_wp_page_template','elementor_canvas'),(548,136,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(549,136,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(550,136,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(551,136,'_elementor_pro_version','3.6.4'),(552,137,'_elementor_edit_mode','builder'),(553,137,'_elementor_template_type','wp-page'),(554,137,'_elementor_version','3.5.6'),(555,137,'_wp_page_template','elementor_canvas'),(556,137,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(557,137,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79266ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"45\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e78e643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bfd09d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Proud Volunteer Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38579fe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.\",\"text_color\":\"#FFFFFF\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f7c27cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FCBC45\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#111416\",\"reverse_order_mobile\":\"reverse-mobile\",\"layout\":\"full_width\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\"},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\"},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\"},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\"},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"rgba(255,255,255,0.7)\",\"text_indent\":{\"unit\":\"px\",\"size\":16},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32e7e93a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index\":7},\"elements\":[{\"id\":\"1790d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f02a905\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2018. Company Name<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Proza Libre\",\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(558,137,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(559,137,'_elementor_pro_version','3.6.4'),(560,138,'_elementor_edit_mode','builder'),(561,138,'_elementor_template_type','wp-page'),(562,138,'_elementor_version','3.5.6'),(563,138,'_wp_page_template','elementor_canvas'),(564,138,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(565,138,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(566,138,'_elementor_page_assets','a:1:{s:6:\"styles\";a:75:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";}}'),(567,138,'_elementor_pro_version','3.6.4'),(578,140,'_elementor_edit_mode','builder'),(579,140,'_elementor_template_type','wp-page'),(580,140,'_elementor_version','3.6.5'),(581,140,'_wp_page_template','elementor_canvas'),(582,140,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(583,140,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(584,140,'_elementor_page_assets','a:1:{s:6:\"styles\";a:71:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";}}'),(585,140,'_elementor_pro_version','3.6.4'),(586,141,'_elementor_edit_mode','builder'),(587,141,'_elementor_template_type','wp-page'),(588,141,'_elementor_version','3.6.5'),(589,141,'_wp_page_template','elementor_canvas'),(590,141,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(591,141,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(592,141,'_elementor_page_assets','a:1:{s:6:\"styles\";a:71:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";}}'),(593,141,'_elementor_pro_version','3.6.4'),(594,142,'_elementor_edit_mode','builder'),(595,142,'_elementor_template_type','wp-page'),(596,142,'_elementor_version','3.6.5'),(597,142,'_wp_page_template','elementor_canvas'),(598,142,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (599,142,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(600,142,'_elementor_page_assets','a:1:{s:6:\"styles\";a:71:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";}}'),(601,142,'_elementor_pro_version','3.6.4'),(603,40,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:12:\"Causes-2.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"Causes-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"Causes-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:20:\"Causes-2-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(613,144,'_elementor_edit_mode','builder'),(614,144,'_elementor_template_type','wp-page'),(615,144,'_elementor_version','3.6.5'),(616,144,'_wp_page_template','elementor_canvas'),(617,144,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(618,144,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(619,144,'_elementor_page_assets','a:1:{s:6:\"styles\";a:71:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";}}'),(620,144,'_elementor_pro_version','3.6.4'),(621,145,'_elementor_edit_mode','builder'),(622,145,'_elementor_template_type','wp-page'),(623,145,'_elementor_version','3.6.5'),(624,145,'_wp_page_template','elementor_canvas'),(625,145,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(626,145,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e3f4d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b16dd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"482fd2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865ff84\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"33aa390f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12abc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10f0644\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(627,145,'_elementor_page_assets','a:1:{s:6:\"styles\";a:71:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";}}'),(628,145,'_elementor_pro_version','3.6.4'),(629,146,'_elementor_edit_mode','builder'),(630,146,'_elementor_template_type','wp-page'),(631,146,'_elementor_version','3.6.5'),(632,146,'_wp_page_template','elementor_canvas'),(633,146,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(634,146,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(635,146,'_elementor_page_assets','a:1:{s:6:\"styles\";a:71:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";}}'),(636,146,'_elementor_pro_version','3.6.4'),(647,148,'_elementor_edit_mode','builder'),(648,148,'_elementor_template_type','wp-page'),(649,148,'_elementor_version','3.6.5'),(650,148,'_wp_page_template','elementor_canvas'),(651,148,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(652,148,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(653,148,'_elementor_page_assets','a:1:{s:6:\"styles\";a:69:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";}}'),(654,148,'_elementor_pro_version','3.6.4'),(655,149,'_elementor_edit_mode','builder'),(656,149,'_elementor_template_type','wp-page'),(657,149,'_elementor_version','3.6.5'),(658,149,'_wp_page_template','elementor_canvas'),(659,149,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(660,149,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f7dd64f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d7434\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bdcb7a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"113b2bd4\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9dd32a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b1e6cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21d4d96a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"16fa23a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee03e11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aeb3f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c040ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf460e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"21b3b77b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"340bcc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"351b38c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e66d5ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"135d657a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eb8341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19d48f1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34924e66\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Causes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ad7ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5259f23f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f038e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"79b35b95\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626ab41d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"36f4bb6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d5d7a87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"474363b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]}},\"elements\":[{\"id\":\"256df6e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4fabe224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"675c25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2198a9d2\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39c1c4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c05461e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"p\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d9ab1de\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"__globals__\":{\"border_color\":\"\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"283fabda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"2bd24ad2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sunday - Saturday\",\"header_size\":\"span\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2ea151f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"751558e0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"08.00 AM - 15.00 PM\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"ef3bfcd\"}],\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"text_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(661,149,'_elementor_page_assets','a:1:{s:6:\"styles\";a:69:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";}}'),(662,149,'_elementor_pro_version','3.6.4'),(663,150,'_elementor_edit_mode','builder'),(664,150,'_elementor_template_type','wp-page'),(665,150,'_elementor_version','3.6.5'),(666,150,'_wp_page_template','elementor_canvas'),(667,150,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(668,150,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(669,150,'_elementor_page_assets','a:1:{s:6:\"styles\";a:69:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";}}'),(670,150,'_elementor_pro_version','3.6.4'),(679,152,'_wp_attached_file','2022/05/background-2.jpg'),(680,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2022/05/background-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"background-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"background-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"background-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"background-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"background-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"background-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(681,152,'_elementor_source_image_hash','0c9562070206c5aef4f77549c24e5fd2308acfce'),(682,153,'_wp_attached_file','2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg'),(683,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:67:\"2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"african-american-girl-hands-holding-a-marble-made-heart-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:69:\"african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:68:\"african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:69:\"african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:1322;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(684,153,'_elementor_source_image_hash','c1bae35182e8b31a9ef8b106e0ef8f468a756726'),(685,154,'_wp_attached_file','2022/05/Image-1.png'),(686,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:19:\"2022/05/Image-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Image-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(687,154,'_elementor_source_image_hash','3becd6d34b02ea83bfa6839e9ba484cf37f77d19'),(688,155,'_wp_attached_file','2022/05/image-3.png'),(689,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:19:\"2022/05/image-3.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(690,155,'_elementor_source_image_hash','da062a76fb1d58fe92513eefe8407f9aa9aca79a'),(691,156,'_wp_attached_file','2022/05/Image.jpg'),(692,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:17:\"2022/05/Image.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(693,156,'_elementor_source_image_hash','9d50849dc5829ae1e9846a4b76cbdb5f3aa5828c'),(694,157,'_wp_attached_file','2022/05/Testimonial.jpg'),(695,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:23:\"2022/05/Testimonial.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Testimonial-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(696,157,'_elementor_source_image_hash','8fc1727ae8d31480163c3276a955f1b7d3aef562'),(697,158,'_wp_attached_file','2022/05/placeholder.png'),(698,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2022/05/placeholder.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(699,158,'_elementor_source_image_hash','22cadf784d61b3701fa0a5dc1cebc6beec59a26c'),(700,159,'_wp_attached_file','2022/05/placeholder-1.png'),(701,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(702,159,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(703,160,'_wp_attached_file','2022/05/placeholder-2.png'),(704,160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-2.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(705,160,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(706,161,'_wp_attached_file','2022/05/placeholder-3.png'),(707,161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-3.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-3-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-3-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-3-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(708,161,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(709,162,'_wp_attached_file','2022/05/placeholder-4.png'),(710,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-4.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-4-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-4-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-4-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(711,162,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(712,163,'_elementor_edit_mode','builder'),(713,163,'_elementor_template_type','page'),(714,163,'_elementor_version','3.6.5'),(715,163,'_elementor_pro_version','3.6.4'),(716,164,'_elementor_edit_mode','builder'),(717,164,'_elementor_template_type','page'),(718,164,'_elementor_version','3.6.5'),(719,164,'_elementor_pro_version','3.6.4'),(720,163,'_wp_page_template','elementor_header_footer'),(721,163,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (722,163,'_elementor_data','[{\"id\":\"6bd82656\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43dbe550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7c6e90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d95d875\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e235537\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15558a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"701ed464\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Causes\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dcb1ad8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4965abd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6230409d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73bc1c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90ad772\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13789407\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51c750fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f0b6ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77e81278\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15024b76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1e6edb\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"30232709\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1d3be5e1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"12125a22\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"683b67ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d1cdd5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cd38169\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78b61dee\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20c5199d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eea4a36\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1dbb6e3c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"133771ed\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"66af8827\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3512f7f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1b5c88d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ab9f1df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6923e8ae\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d651b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df2fa87\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"485f47c4\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d2f670b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7c2b4b8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1e0ebc4c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ab1a2ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"529aa7f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48592951\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9185973\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3215b023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3fbadeb9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1a190e97\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5a1f7677\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"252e35cc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"56342976\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4cfe9b51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b9ba6c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12fcd440\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ddd9720\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f499a7\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"4921618b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2a92606\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1788f7a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"284af7b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"832cb55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cf9459d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"302f5907\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"666c2de5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60ebb7e3\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1bc791af\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3e6ddf3a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6d418144\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47f5c00\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b2fbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_color\":\"#FBF9F5\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18fe9570\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57a4e419\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"323***1610963309784\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"61ede2d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"531ea23e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51da2425\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254485ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50720a32\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66d28199\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61aacd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74961119\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"25cead7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"177e08c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c65a53e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"640e034d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2670d375\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e273f19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68ba42bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42f1a8f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"794dc7b2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"177407d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dee6c68\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"Paul Wyatt\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"82387c8\",\"image\":{\"id\":\"154\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-1.png\"},\"image_size\":\"full\"},{\"heading\":\"Franklin Barr\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"38c7e01\",\"image\":{\"id\":\"155\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/image-3.png\"},\"image_size\":\"full\"},{\"heading\":\"Natalie Melia\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"fd48ea8\",\"image\":{\"id\":\"156\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image.jpg\"},\"image_size\":\"full\"},{\"heading\":\"Arthur Weston\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"image\":{\"id\":\"157\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Testimonial.jpg\"},\"_id\":\"4d6532d\",\"image_size\":\"full\"}],\"slider_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"content_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"slide_background_color\":\"#FBF9F5\",\"slide_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"slide_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"heading_color\":\"#252425\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Noto Serif\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"subtitle_color\":\"#FCBC45\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Heebo\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#6F747E\",\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Heebo\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_typography_font_weight\":\"300\",\"columns_count\":\"3\",\"navigation\":\"none\",\"__globals__\":{\"slide_background_color\":\"\",\"heading_color\":\"\",\"content_color\":\"\",\"subtitle_color\":\"globals\\/colors?id=accent\"},\"slide_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"columns_count_tablet\":\"2\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"stratum-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73de0ea5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76e6bd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42da763b\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"67117aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c2e16c4\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"6852723d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dbdb428\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"5919fadf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"795fe107\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(723,165,'_elementor_edit_mode','builder'),(724,165,'_elementor_template_type','page'),(725,165,'_elementor_version','3.6.5'),(726,165,'_elementor_pro_version','3.6.4'),(727,165,'_wp_page_template','elementor_header_footer'),(728,165,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(729,165,'_elementor_data','[{\"id\":\"6bd82656\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43dbe550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7c6e90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d95d875\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e235537\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15558a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"701ed464\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Causes\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dcb1ad8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4965abd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6230409d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73bc1c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90ad772\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13789407\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51c750fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f0b6ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77e81278\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15024b76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1e6edb\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"30232709\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1d3be5e1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"12125a22\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"683b67ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d1cdd5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cd38169\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78b61dee\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20c5199d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5eea4a36\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1dbb6e3c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"133771ed\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"66af8827\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3512f7f4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1b5c88d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ab9f1df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6923e8ae\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d651b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df2fa87\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"485f47c4\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d2f670b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7c2b4b8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1e0ebc4c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ab1a2ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"529aa7f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48592951\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9185973\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3215b023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3fbadeb9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1a190e97\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5a1f7677\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"252e35cc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"56342976\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4cfe9b51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b9ba6c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12fcd440\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ddd9720\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f499a7\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"4921618b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2a92606\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1788f7a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"284af7b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"832cb55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cf9459d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"302f5907\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"666c2de5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60ebb7e3\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1bc791af\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3e6ddf3a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6d418144\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47f5c00\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b2fbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_color\":\"#FBF9F5\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18fe9570\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57a4e419\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"323***1610963309784\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"61ede2d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"531ea23e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51da2425\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254485ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50720a32\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66d28199\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61aacd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74961119\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"25cead7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"177e08c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c65a53e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"640e034d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2670d375\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e273f19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68ba42bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42f1a8f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"794dc7b2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"177407d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dee6c68\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"Paul Wyatt\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"82387c8\",\"image\":{\"id\":\"154\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-1.png\"},\"image_size\":\"full\"},{\"heading\":\"Franklin Barr\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"38c7e01\",\"image\":{\"id\":\"155\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/image-3.png\"},\"image_size\":\"full\"},{\"heading\":\"Natalie Melia\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"fd48ea8\",\"image\":{\"id\":\"156\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image.jpg\"},\"image_size\":\"full\"},{\"heading\":\"Arthur Weston\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"image\":{\"id\":\"157\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Testimonial.jpg\"},\"_id\":\"4d6532d\",\"image_size\":\"full\"}],\"slider_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"content_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"slide_background_color\":\"#FBF9F5\",\"slide_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"slide_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"heading_color\":\"#252425\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Noto Serif\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"subtitle_color\":\"#FCBC45\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Heebo\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#6F747E\",\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Heebo\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_typography_font_weight\":\"300\",\"columns_count\":\"3\",\"navigation\":\"none\",\"__globals__\":{\"slide_background_color\":\"\",\"heading_color\":\"\",\"content_color\":\"\",\"subtitle_color\":\"globals\\/colors?id=accent\"},\"slide_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"columns_count_tablet\":\"2\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"stratum-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73de0ea5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76e6bd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42da763b\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"67117aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c2e16c4\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"6852723d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dbdb428\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"5919fadf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"795fe107\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(730,163,'_elementor_page_assets','a:1:{s:6:\"styles\";a:18:{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\";}}'),(731,163,'envato_tk_source_kit','6'),(732,163,'envato_tk_source_index','3'),(733,166,'_elementor_edit_mode','builder'),(734,166,'_elementor_template_type','wp-page'),(735,166,'_elementor_version','3.6.5'),(736,166,'_wp_page_template','elementor_canvas'),(737,166,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(738,166,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(739,166,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(740,166,'_elementor_pro_version','3.6.4'),(741,167,'_elementor_edit_mode','builder'),(742,167,'_elementor_template_type','wp-page'),(743,167,'_elementor_version','3.6.5'),(744,167,'_wp_page_template','elementor_canvas'),(745,167,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(746,167,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Of Events\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Upcoming Events\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(747,167,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(748,167,'_elementor_pro_version','3.6.4'),(749,168,'_elementor_edit_mode','builder'),(750,168,'_elementor_template_type','wp-page'),(751,168,'_elementor_version','3.6.5'),(752,168,'_wp_page_template','elementor_canvas'),(753,168,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(754,168,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(755,168,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(756,168,'_elementor_pro_version','3.6.4'),(757,169,'_elementor_edit_mode','builder'),(758,169,'_elementor_template_type','wp-page'),(759,169,'_elementor_version','3.6.5'),(760,169,'_wp_page_template','elementor_canvas'),(761,169,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(762,169,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(763,169,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(764,169,'_elementor_pro_version','3.6.4'),(765,170,'_elementor_edit_mode','builder'),(766,170,'_elementor_template_type','wp-page'),(767,170,'_elementor_version','3.6.5'),(768,170,'_wp_page_template','elementor_canvas'),(769,170,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(770,170,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e642fe1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(771,170,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(772,170,'_elementor_pro_version','3.6.4'),(773,171,'_elementor_edit_mode','builder'),(774,171,'_elementor_template_type','wp-page'),(775,171,'_elementor_version','3.6.5'),(776,171,'_wp_page_template','elementor_canvas'),(777,171,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (778,171,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(779,171,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(780,171,'_elementor_pro_version','3.6.4'),(791,173,'_wp_attached_file','2022/05/cropped-Aahan-logo-1.webp'),(792,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:33:\"2022/05/cropped-Aahan-logo-1.webp\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-Aahan-logo-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"cropped-Aahan-logo-1-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-Aahan-logo-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"cropped-Aahan-logo-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"cropped-Aahan-logo-1-1200x1200.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/webp\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(793,174,'_wp_attached_file','2022/05/cropped-cropped-Aahan-logo-1.webp'),(794,174,'_wp_attachment_context','custom-logo'),(795,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:4:\"file\";s:41:\"2022/05/cropped-cropped-Aahan-logo-1.webp\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"cropped-cropped-Aahan-logo-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"cropped-cropped-Aahan-logo-1-1024x768.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"cropped-cropped-Aahan-logo-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"cropped-cropped-Aahan-logo-1-768x576.webp\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/webp\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-cropped-Aahan-logo-1-1200x900.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(796,175,'_wp_attached_file','2022/05/cropped-cropped-cropped-Aahan-logo-1.webp'),(797,175,'_wp_attachment_context','site-icon'),(798,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:49:\"2022/05/cropped-cropped-cropped-Aahan-logo-1.webp\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"cropped-cropped-cropped-Aahan-logo-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"cropped-cropped-cropped-Aahan-logo-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:49:\"cropped-cropped-cropped-Aahan-logo-1-270x270.webp\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/webp\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:49:\"cropped-cropped-cropped-Aahan-logo-1-192x192.webp\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/webp\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:49:\"cropped-cropped-cropped-Aahan-logo-1-180x180.webp\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/webp\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-cropped-Aahan-logo-1-32x32.webp\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/webp\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(799,176,'_wp_trash_meta_status','publish'),(800,176,'_wp_trash_meta_time','1652697519'),(802,7,'_edit_lock','1652703412:1'),(803,177,'_elementor_edit_mode','builder'),(804,177,'_elementor_template_type','wp-page'),(805,177,'_elementor_version','3.6.5'),(806,177,'_wp_page_template','elementor_canvas'),(807,177,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(808,177,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(809,177,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(810,177,'_elementor_pro_version','3.6.4'),(811,178,'_elementor_edit_mode','builder'),(812,178,'_elementor_template_type','wp-page'),(813,178,'_elementor_version','3.6.5'),(814,178,'_wp_page_template','elementor_canvas'),(815,178,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(816,178,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60.76599999999999823785401531495153903961181640625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.230000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(817,178,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(818,178,'_elementor_pro_version','3.6.4'),(819,179,'_elementor_edit_mode','builder'),(820,179,'_elementor_template_type','wp-page'),(821,179,'_elementor_version','3.6.5'),(822,179,'_wp_page_template','elementor_canvas'),(823,179,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(824,179,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(825,179,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(826,179,'_elementor_pro_version','3.6.4'),(838,182,'_wp_attached_file','2022/05/c6b2edbe2e2775780e9b95a426fcbf64.jpg'),(839,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:44:\"2022/05/c6b2edbe2e2775780e9b95a426fcbf64.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"c6b2edbe2e2775780e9b95a426fcbf64-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"c6b2edbe2e2775780e9b95a426fcbf64-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"c6b2edbe2e2775780e9b95a426fcbf64-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"c6b2edbe2e2775780e9b95a426fcbf64-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"c6b2edbe2e2775780e9b95a426fcbf64-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"c6b2edbe2e2775780e9b95a426fcbf64-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(840,183,'_wp_attached_file','2022/05/orange_white_solid_colorful_65839_1920x1080.jpg'),(841,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:55:\"2022/05/orange_white_solid_colorful_65839_1920x1080.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"orange_white_solid_colorful_65839_1920x1080-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"orange_white_solid_colorful_65839_1920x1080-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"orange_white_solid_colorful_65839_1920x1080-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"orange_white_solid_colorful_65839_1920x1080-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"orange_white_solid_colorful_65839_1920x1080-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"orange_white_solid_colorful_65839_1920x1080-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(842,7,'_elementor_pro_version','3.6.4'),(843,184,'_wp_attached_file','2022/05/lee-miller-47629-unsplash.jpg'),(844,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:1338;s:4:\"file\";s:37:\"2022/05/lee-miller-47629-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"lee-miller-47629-unsplash-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"lee-miller-47629-unsplash-1024x692.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"lee-miller-47629-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"lee-miller-47629-unsplash-768x519.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"lee-miller-47629-unsplash-1536x1038.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1038;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"lee-miller-47629-unsplash-1200x811.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(845,184,'_elementor_source_image_hash','e164f707afdfc5dfd9fdea219922fd3aa9cdbc9f'),(846,185,'_elementor_edit_mode','builder'),(847,185,'_elementor_template_type','section'),(848,185,'_elementor_version','3.6.5'),(849,185,'_elementor_pro_version','3.6.4'),(850,185,'_elementor_data','[{\"id\":\"685b55da\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":783},\"background_background\":\"classic\",\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#282828\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"205dba58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72bb3ab4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subheading\",\"header_size\":\"h3\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\",\"align\":\"center\",\"_css_classes\":\"envato-kit-138-bracket\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8e45f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now for\\nfresh content.\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5},\"typography_font_family\":\"Nunito Sans\",\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1daa86\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":72},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"713aecf\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":612},\"margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78515e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3188c200\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"75\",\"field_value\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Sign Up\",\"button_size\":\"md\",\"button_width\":\"25\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":20},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(851,186,'_elementor_edit_mode','builder'),(852,186,'_elementor_template_type','section'),(853,186,'_elementor_version','3.6.5'),(854,186,'_elementor_pro_version','3.6.4'),(855,186,'_elementor_data','[{\"id\":\"685b55da\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":783},\"background_background\":\"classic\",\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#282828\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"205dba58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72bb3ab4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subheading\",\"header_size\":\"h3\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\",\"align\":\"center\",\"_css_classes\":\"envato-kit-138-bracket\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8e45f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now for\\nfresh content.\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5},\"typography_font_family\":\"Nunito Sans\",\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1daa86\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":72},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"713aecf\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":612},\"margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78515e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3188c200\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"75\",\"field_value\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Sign Up\",\"button_size\":\"md\",\"button_width\":\"25\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":20},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(856,185,'_elementor_page_assets','a:0:{}'),(857,185,'envato_elements_download_event','141-3-1d55f1e76be9fb1a8d9de88accbe962f-b0ab270b92fd705df74cb95f5ccc3509'),(858,188,'_elementor_edit_mode','builder'),(859,188,'_elementor_template_type','wp-page'),(860,188,'_elementor_version','3.6.5'),(861,188,'_wp_page_template','elementor_canvas'),(862,188,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(863,188,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(864,188,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(865,188,'_elementor_pro_version','3.6.4'),(866,189,'_elementor_edit_mode','builder'),(867,189,'_elementor_template_type','wp-page'),(868,189,'_elementor_version','3.6.5'),(869,189,'_wp_page_template','elementor_canvas'),(870,189,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(871,189,'_elementor_data','[{\"id\":\"2ecfb60c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":-50},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"column_position\":\"top\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"40bc9490\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a76fb12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":-500},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"-46\",\"left\":0,\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#EAA145\",\"background_slideshow_background_size\":\"cover\"},\"elements\":[{\"id\":\"609c21a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.73300000000000409272615797817707061767578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"46e88389\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wilson, KS 67490\",\"icon\":\"fa fa-map-marker\",\"_id\":\"5866efa\"},{\"text\":\"test@test.com\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\"},{\"text\":\"24\\/7 Customer Support\",\"icon\":\"fa fa-phone\",\"_id\":\"99aba51\"}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#192431\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a315b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.26700000000000301270119962282478809356689453125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"478c6408\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\"},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\"},{\"social\":\"fa fa-github\",\"_id\":\"8206083\"},{\"social\":\"fa fa-bitbucket\",\"_id\":\"dccfaf9\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#4c5b6d\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"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\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"8260b12\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"title_text\":\"Logo\",\"description_text\":\"Tagline\",\"position\":\"left\",\"primary_color\":\"#ff7f50\",\"icon_size\":{\"unit\":\"px\",\"size\":60},\"rotate\":{\"unit\":\"deg\",\"size\":8},\"text_align\":\"left\",\"title_color\":\"#212121\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Odor Mean Chey\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"description_color\":\"#bcbcbc\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Odor Mean Chey\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"description_typography_font_weight\":\"bold\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125},\"selected_icon\":{\"value\":\"fab fa-superpowers\",\"library\":\"fa-brands\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"title_color\":\"#D5BB08\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c3d3d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"505e4f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dc4b59b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"00a5ce5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"d637e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7724d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ecd81fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"9f353ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"9bbbb40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"c251690\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_slideshow_gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":43,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"}],\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"ce2aebf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":285,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"All contacts\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ae9bc6a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\",\"icon\":\"fa fa-map-marker\",\"_id\":\"48ff73c\"},{\"text\":\"+1 234 567 8902\",\"icon\":\"fa fa-phone\",\"_id\":\"a26609a\"},{\"text\":\"contact@yoursite.com<br>help@yoursite.com\",\"icon\":\"fa fa-envelope-open-o\",\"_id\":\"050eab3\"}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.992999999999998550492819049395620822906494140625,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Networks\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.75},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"yourfbusername\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"@twitterhandle\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"insta_account\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"plusprofilename\",\"icon\":\"fa fa-google-plus\",\"_id\":\"dc58f6a\",\"selected_icon\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"username\",\"icon\":\"fa fa-linkedin\",\"_id\":\"e06bc13\",\"selected_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_color\":\"#cc9955\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"text_color_hover\":\"#cc9955\",\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.007000000000001449507180950604379177093505859375,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f86def4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"xs\",\"button_width\":\"\",\"submit_actions\":[\"\"],\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-140\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"kit-140\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-140\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-140\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"rgba(0,0,0,0)\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_hover_animation\":\"push\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"button_align\":\"start\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(872,189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(873,189,'_elementor_pro_version','3.6.4'),(874,190,'_elementor_edit_mode','builder'),(875,190,'_elementor_template_type','wp-page'),(876,190,'_elementor_version','3.6.5'),(877,190,'_wp_page_template','elementor_canvas'),(878,190,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(879,190,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(880,190,'_elementor_page_assets','a:1:{s:6:\"styles\";a:57:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";}}'),(881,190,'_elementor_pro_version','3.6.4'),(894,192,'_elementor_edit_mode','builder'),(895,192,'_elementor_template_type','wp-page'),(896,192,'_elementor_version','3.6.5'),(897,192,'_wp_page_template','elementor_canvas'),(898,192,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (899,192,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(900,192,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(901,192,'_elementor_pro_version','3.6.4'),(903,193,'_elementor_edit_mode','builder'),(904,193,'_elementor_template_type','wp-page'),(905,193,'_elementor_version','3.6.5'),(906,193,'_wp_page_template','elementor_canvas'),(907,193,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(908,193,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(909,193,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(910,193,'_elementor_pro_version','3.6.4'),(912,194,'_elementor_edit_mode','builder'),(913,194,'_elementor_template_type','wp-page'),(914,194,'_elementor_version','3.6.5'),(915,194,'_wp_page_template','elementor_canvas'),(916,194,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(917,194,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(918,194,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(919,194,'_elementor_pro_version','3.6.4'),(929,196,'_elementor_edit_mode','builder'),(930,196,'_elementor_template_type','kit'),(931,196,'_elementor_version','3.6.5'),(932,196,'_wp_page_template','default'),(933,196,'_elementor_page_settings','a:95:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"c53d536\";s:5:\"title\";s:10:\"Background\";s:5:\"color\";s:7:\"#FBF9F5\";}i:1;a:3:{s:3:\"_id\";s:7:\"7e2fbf0\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#F0F0F0\";}}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:\"#FFB102\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#252425\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#6F747E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FCBC45\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}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:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}}i:2;a:7:{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:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:18:\"Shadows Into Light\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:3:{i:0;a:8:{s:3:\"_id\";s:7:\"1dbf442\";s:5:\"title\";s:15:\"Primary Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"35b8a75\";s:5:\"title\";s:10:\"H3 Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"ffbaf7c\";s:5:\"title\";s:3:\"H3 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:15:\"activeItemIndex\";i:1;s:10:\"body_color\";s:7:\"#6F747E\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:11:\"__globals__\";a:22:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=ffbaf7c\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:24:\"h6_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=35b8a75\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_background_color\";s:0:\"\";s:17:\"button_text_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:0:\"\";}s:17:\"link_normal_color\";s:7:\"#FCBC45\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:8:\"h1_color\";s:7:\"#252425\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#252425\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:8:\"h3_color\";s:7:\"#252425\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:8:\"h4_color\";s:7:\"#252425\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:8:\"h5_color\";s:7:\"#FCBC45\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"600\";s:28:\"h5_typography_text_transform\";s:9:\"uppercase\";s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#FCBC45\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:10:\"Noto Serif\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#252425\";s:23:\"button_background_color\";s:7:\"#FCBC45\";s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:0;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}s:16:\"form_label_color\";s:7:\"#252425\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Heebo\";s:33:\"form_label_typography_font_weight\";s:3:\"300\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.29999999999999982236431605997495353221893310546875;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:33:\"form_field_typography_font_weight\";s:3:\"300\";s:21:\"form_field_text_color\";s:7:\"#6F747E\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_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:23:\"form_field_border_color\";s:7:\"#F0F0F0\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_typography_text_decoration\";s:4:\"none\";s:16:\"link_hover_color\";s:7:\"#FCBC45\";s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#252425\";s:9:\"site_name\";s:5:\"Aahan\";s:16:\"site_description\";s:27:\"Just another WordPress site\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(934,196,'_elementor_data','[]'),(935,196,'_elementor_page_assets','a:0:{}'),(936,196,'_elementor_pro_version','3.6.4'),(938,197,'_elementor_edit_mode','builder'),(939,197,'_elementor_template_type','wp-page'),(940,197,'_elementor_version','3.6.5'),(941,197,'_wp_page_template','elementor_canvas'),(942,197,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(943,197,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(944,197,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(945,197,'_elementor_pro_version','3.6.4'),(946,198,'_elementor_edit_mode','builder'),(947,198,'_elementor_template_type','wp-page'),(948,198,'_elementor_version','3.6.5'),(949,198,'_wp_page_template','elementor_canvas'),(950,198,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(951,198,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"rgba(247,247,247,0.13)\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(952,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(953,198,'_elementor_pro_version','3.6.4'),(954,199,'_elementor_edit_mode','builder'),(955,199,'_elementor_template_type','wp-page'),(956,199,'_elementor_version','3.6.5'),(957,199,'_wp_page_template','elementor_canvas'),(958,199,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(959,199,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":19},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(960,199,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(961,199,'_elementor_pro_version','3.6.4'),(962,200,'_elementor_edit_mode','builder'),(963,200,'_elementor_template_type','kit'),(964,200,'_elementor_version','3.6.5'),(965,200,'_wp_page_template','default'),(966,200,'_elementor_page_settings','a:95:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"c53d536\";s:5:\"title\";s:10:\"Background\";s:5:\"color\";s:7:\"#FBF9F5\";}i:1;a:3:{s:3:\"_id\";s:7:\"7e2fbf0\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#F0F0F0\";}}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:\"#ed6421\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#252425\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#6F747E\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FCBC45\";}}s:17:\"system_typography\";a:4:{i:0;a:9:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}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:10:\"Noto Serif\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}}i:2;a:7:{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:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:10:{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:18:\"Shadows Into Light\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:9:\"uppercase\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:3:{i:0;a:8:{s:3:\"_id\";s:7:\"1dbf442\";s:5:\"title\";s:15:\"Primary Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"35b8a75\";s:5:\"title\";s:10:\"H3 Special\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"ffbaf7c\";s:5:\"title\";s:3:\"H3 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Noto Serif\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;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:15:\"activeItemIndex\";i:1;s:10:\"body_color\";s:7:\"#6F747E\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:11:\"__globals__\";a:22:{s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=ffbaf7c\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:24:\"h6_typography_typography\";s:28:\"globals/typography?id=accent\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=35b8a75\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_background_color\";s:0:\"\";s:17:\"button_text_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:0:\"\";}s:17:\"link_normal_color\";s:7:\"#FCBC45\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:8:\"h1_color\";s:7:\"#252425\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#252425\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:8:\"h3_color\";s:7:\"#252425\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:8:\"h4_color\";s:7:\"#252425\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:10:\"Noto Serif\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:8:\"h5_color\";s:7:\"#FCBC45\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"600\";s:28:\"h5_typography_text_transform\";s:9:\"uppercase\";s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#FCBC45\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:18:\"Shadows Into Light\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:10:\"Noto Serif\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#252425\";s:23:\"button_background_color\";s:7:\"#FCBC45\";s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b: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:0;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}s:16:\"form_label_color\";s:7:\"#252425\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Heebo\";s:33:\"form_label_typography_font_weight\";s:3:\"300\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.29999999999999982236431605997495353221893310546875;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:33:\"form_field_typography_font_weight\";s:3:\"300\";s:21:\"form_field_text_color\";s:7:\"#6F747E\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_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:23:\"form_field_border_color\";s:7:\"#F0F0F0\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_typography_text_decoration\";s:4:\"none\";s:16:\"link_hover_color\";s:7:\"#FCBC45\";s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:23:\"button_hover_text_color\";s:7:\"#252425\";s:9:\"site_name\";s:5:\"Aahan\";s:16:\"site_description\";s:27:\"Just another WordPress site\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(967,200,'_elementor_data','[]'),(968,200,'_elementor_page_assets','a:0:{}'),(969,200,'_elementor_pro_version','3.6.4'),(970,7,'_elementor_css','a:6:{s:4:\"time\";i:1652703476;s:5:\"fonts\";a:4:{i:0;s:6:\"Roboto\";i:1;s:10:\"Noto Serif\";i:2;s:5:\"Heebo\";i:3;s:18:\"Shadows Into Light\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(979,202,'_elementor_edit_mode','builder'),(980,202,'_elementor_template_type','wp-page'),(981,202,'_elementor_version','3.6.5'),(982,202,'_wp_page_template','elementor_canvas'),(983,202,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(984,202,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":19},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(985,202,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(986,202,'_elementor_pro_version','3.6.4'),(987,203,'_elementor_edit_mode','builder'),(988,203,'_elementor_template_type','wp-page'),(989,203,'_elementor_version','3.6.5'),(990,203,'_wp_page_template','elementor_canvas'),(991,203,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(992,203,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"background_color\":\"#E69900\"},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ead2cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d846c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"345d0d7b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"587782a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.97399999999999664623828721232712268829345703125,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fd3d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4066efdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b8b6ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3262634e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"464358f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.35900000000000176214598468504846096038818359375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"557067c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c0c3b5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"55a690c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5886eb7c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":19},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#ffab00\",\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(993,203,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(994,203,'_elementor_pro_version','3.6.4'),(995,204,'_elementor_edit_mode','builder'),(996,204,'_elementor_template_type','wp-page'),(997,204,'_elementor_version','3.6.5'),(998,204,'_wp_page_template','elementor_canvas'),(999,204,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1000,204,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1001,204,'_elementor_page_assets','a:1:{s:6:\"styles\";a:52:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";}}'),(1002,204,'_elementor_pro_version','3.6.4'),(1003,205,'_elementor_edit_mode','builder'),(1004,205,'_elementor_template_type','wp-page'),(1005,205,'_elementor_version','3.6.5'),(1006,205,'_wp_page_template','elementor_canvas'),(1007,205,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1008,205,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1009,205,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1010,205,'_elementor_pro_version','3.6.4'),(1011,206,'_elementor_edit_mode','builder'),(1012,206,'_elementor_template_type','wp-page'),(1013,206,'_elementor_version','3.6.5'),(1014,206,'_wp_page_template','elementor_canvas'),(1015,206,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1016,206,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1017,206,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1018,206,'_elementor_pro_version','3.6.4'),(1019,207,'_elementor_edit_mode','builder'),(1020,207,'_elementor_template_type','wp-page'),(1021,207,'_elementor_version','3.6.5'),(1022,207,'_wp_page_template','elementor_canvas'),(1023,207,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1024,207,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1025,207,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1026,207,'_elementor_pro_version','3.6.4'),(1028,208,'_wp_attached_file','2022/05/top-header-scaled-1.jpg'),(1029,208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:52;s:4:\"file\";s:31:\"2022/05/top-header-scaled-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"top-header-scaled-1-300x6.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:6;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"top-header-scaled-1-1024x21.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:21;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"top-header-scaled-1-150x52.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"top-header-scaled-1-768x16.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:16;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"top-header-scaled-1-1536x31.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"top-header-scaled-1-2048x42.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:42;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"top-header-scaled-1-1200x24.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:24;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:31:\"top-header-scaled-1-1980x40.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1030,209,'_elementor_edit_mode','builder'),(1031,209,'_elementor_template_type','wp-page'),(1032,209,'_elementor_version','3.6.5'),(1033,209,'_wp_page_template','elementor_canvas'),(1034,209,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1035,209,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1036,209,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1037,209,'_elementor_pro_version','3.6.4'),(1038,209,'_elementor_css','a:6:{s:4:\"time\";i:1652707244;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:28;s:6:\"Roboto\";i:33;s:4:\"Muli\";i:34;s:6:\"Nunito\";i:37;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"1e33754\";i:1;s:7:\"1e33754\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1039,210,'_elementor_edit_mode','builder'),(1040,210,'_elementor_template_type','wp-page'),(1041,210,'_elementor_version','3.6.5'),(1042,210,'_wp_page_template','elementor_canvas'),(1043,210,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1044,210,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/orange_white_solid_colorful_65839_1920x1080.jpg\",\"id\":183,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1045,210,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1046,210,'_elementor_pro_version','3.6.4'),(1047,210,'_elementor_css','a:6:{s:4:\"time\";i:1652707244;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:28;s:6:\"Roboto\";i:33;s:4:\"Muli\";i:34;s:6:\"Nunito\";i:37;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"1e33754\";i:1;s:7:\"1e33754\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1048,211,'_elementor_edit_mode','builder'),(1049,211,'_elementor_template_type','wp-page'),(1050,211,'_elementor_version','3.6.5'),(1051,211,'_wp_page_template','elementor_canvas'),(1052,211,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1053,211,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1054,211,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1055,211,'_elementor_pro_version','3.6.4'),(1056,211,'_elementor_css','a:6:{s:4:\"time\";i:1652707244;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:28;s:6:\"Roboto\";i:33;s:4:\"Muli\";i:34;s:6:\"Nunito\";i:37;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"1e33754\";i:1;s:7:\"1e33754\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1067,213,'_elementor_edit_mode','builder'),(1068,213,'_elementor_template_type','wp-page'),(1069,213,'_elementor_version','3.6.5'),(1070,213,'_wp_page_template','elementor_canvas'),(1071,213,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1072,213,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1073,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1074,213,'_elementor_pro_version','3.6.4'),(1075,214,'_elementor_edit_mode','builder'),(1076,214,'_elementor_template_type','wp-page'),(1077,214,'_elementor_version','3.6.5'),(1078,214,'_wp_page_template','elementor_canvas'),(1079,214,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1080,214,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1081,214,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1082,214,'_elementor_pro_version','3.6.4'),(1083,215,'_elementor_edit_mode','builder'),(1084,215,'_elementor_template_type','wp-page'),(1085,215,'_elementor_version','3.6.5'),(1086,215,'_wp_page_template','elementor_canvas'),(1087,215,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1088,215,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1089,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1090,215,'_elementor_pro_version','3.6.4'),(1092,216,'_elementor_edit_mode','builder'),(1093,216,'_elementor_template_type','wp-page'),(1094,216,'_elementor_version','3.6.5'),(1095,216,'_wp_page_template','elementor_canvas'),(1096,216,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1097,216,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1098,216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1099,216,'_elementor_pro_version','3.6.4'),(1100,216,'_elementor_css','a:6:{s:4:\"time\";i:1652759803;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:28;s:6:\"Roboto\";i:33;s:4:\"Muli\";i:34;s:6:\"Nunito\";i:37;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"1e33754\";i:1;s:7:\"1e33754\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1101,217,'_elementor_edit_mode','builder'),(1102,217,'_elementor_template_type','wp-page'),(1103,217,'_elementor_version','3.6.5'),(1104,217,'_wp_page_template','elementor_canvas'),(1105,217,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1106,217,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1107,217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1108,217,'_elementor_pro_version','3.6.4'),(1109,217,'_elementor_css','a:6:{s:4:\"time\";i:1652759803;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:28;s:6:\"Roboto\";i:33;s:4:\"Muli\";i:34;s:6:\"Nunito\";i:37;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"1e33754\";i:1;s:7:\"1e33754\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1110,218,'_elementor_edit_mode','builder'),(1111,218,'_elementor_template_type','wp-page'),(1112,218,'_elementor_version','3.6.5'),(1113,218,'_wp_page_template','elementor_canvas'),(1114,218,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1115,218,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1116,218,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1117,218,'_elementor_pro_version','3.6.4'),(1118,218,'_elementor_css','a:6:{s:4:\"time\";i:1652759803;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:28;s:6:\"Roboto\";i:33;s:4:\"Muli\";i:34;s:6:\"Nunito\";i:37;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"1e33754\";i:1;s:7:\"1e33754\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1129,220,'_elementor_edit_mode','builder'),(1130,220,'_elementor_template_type','wp-page'),(1131,220,'_elementor_version','3.6.5'),(1132,220,'_wp_page_template','elementor_canvas'),(1133,220,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1134,220,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1135,220,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1136,220,'_elementor_pro_version','3.6.4'),(1137,221,'_elementor_edit_mode','builder'),(1138,221,'_elementor_template_type','wp-page'),(1139,221,'_elementor_version','3.6.5'),(1140,221,'_wp_page_template','elementor_canvas'),(1141,221,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1142,221,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-69\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.905000000000001136868377216160297393798828125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d38a3ff\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Events\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f972cce\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7484093b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6bd9d48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6f1792\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17df77fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"72e00503\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"697f60c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"dce6de9\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"50cbef59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11162301\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"798e8339\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48bf948c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1143,221,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1144,221,'_elementor_pro_version','3.6.4'),(1145,222,'_elementor_edit_mode','builder'),(1146,222,'_elementor_template_type','wp-page'),(1147,222,'_elementor_version','3.6.5'),(1148,222,'_wp_page_template','elementor_canvas'),(1149,222,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1150,222,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1151,222,'_elementor_page_assets','a:1:{s:6:\"styles\";a:47:{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\";}}'),(1152,222,'_elementor_pro_version','3.6.4'),(1153,223,'_elementor_edit_mode','builder'),(1154,223,'_elementor_template_type','wp-page'),(1155,223,'_elementor_version','3.6.5'),(1156,223,'_wp_page_template','elementor_canvas'),(1157,223,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1158,223,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1159,223,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1160,223,'_elementor_pro_version','3.6.4'),(1161,224,'_elementor_edit_mode','builder'),(1162,224,'_elementor_template_type','wp-page'),(1163,224,'_elementor_version','3.6.5'),(1164,224,'_wp_page_template','elementor_canvas'),(1165,224,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1166,224,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (1167,224,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1168,224,'_elementor_pro_version','3.6.4'),(1169,225,'_elementor_edit_mode','builder'),(1170,225,'_elementor_template_type','wp-page'),(1171,225,'_elementor_version','3.6.5'),(1172,225,'_wp_page_template','elementor_canvas'),(1173,225,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1174,225,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1175,225,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1176,225,'_elementor_pro_version','3.6.4'),(1177,226,'_elementor_edit_mode','builder'),(1178,226,'_elementor_template_type','section'),(1179,226,'_elementor_version','3.6.5'),(1180,226,'_elementor_pro_version','3.6.4'),(1181,227,'_elementor_edit_mode','builder'),(1182,227,'_elementor_template_type','section'),(1183,227,'_elementor_version','3.6.5'),(1184,227,'_elementor_pro_version','3.6.4'),(1185,226,'_wp_page_template','default'),(1186,226,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1187,226,'_elementor_data','[{\"id\":\"141ab6df\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"131d4adb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"9e24305\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"4f811c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a181ab2\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"15b70efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63a54428\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1188,228,'_elementor_edit_mode','builder'),(1189,228,'_elementor_template_type','section'),(1190,228,'_elementor_version','3.6.5'),(1191,228,'_elementor_pro_version','3.6.4'),(1192,228,'_wp_page_template','default'),(1193,228,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1194,228,'_elementor_data','[{\"id\":\"141ab6df\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"131d4adb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"9e24305\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"4f811c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a181ab2\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"15b70efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63a54428\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1195,226,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1196,229,'_elementor_edit_mode','builder'),(1197,229,'_elementor_template_type','section'),(1198,229,'_elementor_version','3.6.5'),(1199,229,'_elementor_pro_version','3.6.4'),(1200,230,'_elementor_edit_mode','builder'),(1201,230,'_elementor_template_type','section'),(1202,230,'_elementor_version','3.6.5'),(1203,230,'_elementor_pro_version','3.6.4'),(1204,229,'_wp_page_template','default'),(1205,229,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1206,229,'_elementor_data','[{\"id\":\"3739f249\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"57e5b3a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"875029b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"73840747\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bb3a7f6\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b2b0973\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"3e3e1054\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3597da58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fe92111\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1207,231,'_elementor_edit_mode','builder'),(1208,231,'_elementor_template_type','section'),(1209,231,'_elementor_version','3.6.5'),(1210,231,'_elementor_pro_version','3.6.4'),(1211,231,'_wp_page_template','default'),(1212,231,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1213,231,'_elementor_data','[{\"id\":\"3739f249\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"57e5b3a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"875029b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"73840747\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bb3a7f6\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b2b0973\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"3e3e1054\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3597da58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7fe92111\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1214,229,'_elementor_page_assets','a:0:{}'),(1215,232,'_elementor_edit_mode','builder'),(1216,232,'_elementor_template_type','widget'),(1217,233,'_elementor_edit_mode','builder'),(1218,233,'_elementor_template_type','widget'),(1219,232,'_wp_page_template','default'),(1220,232,'_elementor_version','3.6.5'),(1221,232,'_elementor_pro_version','3.6.4'),(1222,232,'_elementor_data','[{\"id\":\"524c70f6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}]'),(1223,234,'_elementor_edit_mode','builder'),(1224,234,'_elementor_template_type','widget'),(1225,234,'_wp_page_template','default'),(1226,234,'_elementor_version','3.6.5'),(1227,234,'_elementor_pro_version','3.6.4'),(1228,234,'_elementor_data','[{\"id\":\"524c70f6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}]'),(1229,232,'_elementor_page_assets','a:0:{}'),(1230,232,'_elementor_template_widget_type','nav-menu'),(1231,235,'_elementor_edit_mode','builder'),(1232,235,'_elementor_template_type','widget'),(1233,236,'_elementor_edit_mode','builder'),(1234,236,'_elementor_template_type','widget'),(1235,235,'_wp_page_template','default'),(1236,235,'_elementor_version','3.6.5'),(1237,235,'_elementor_pro_version','3.6.4'),(1238,235,'_elementor_data','[{\"id\":\"2e55737d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}]'),(1239,237,'_elementor_edit_mode','builder'),(1240,237,'_elementor_template_type','widget'),(1241,237,'_wp_page_template','default'),(1242,237,'_elementor_version','3.6.5'),(1243,237,'_elementor_pro_version','3.6.4'),(1244,237,'_elementor_data','[{\"id\":\"2e55737d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}]'),(1245,235,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1246,235,'_elementor_template_widget_type','button'),(1247,238,'_elementor_edit_mode','builder'),(1248,238,'_elementor_template_type','widget'),(1249,239,'_elementor_edit_mode','builder'),(1250,239,'_elementor_template_type','widget'),(1251,238,'_wp_page_template','default'),(1252,238,'_elementor_version','3.6.5'),(1253,238,'_elementor_pro_version','3.6.4'),(1254,238,'_elementor_data','[{\"id\":\"64e839c7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}]'),(1255,240,'_elementor_edit_mode','builder'),(1256,240,'_elementor_template_type','widget'),(1257,240,'_wp_page_template','default'),(1258,240,'_elementor_version','3.6.5'),(1259,240,'_elementor_pro_version','3.6.4'),(1260,240,'_elementor_data','[{\"id\":\"64e839c7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}]'),(1261,238,'_elementor_page_assets','a:0:{}'),(1262,238,'_elementor_template_widget_type','theme-site-logo'),(1263,241,'_elementor_edit_mode','builder'),(1264,241,'_elementor_template_type','section'),(1265,241,'_elementor_version','3.6.5'),(1266,241,'_elementor_pro_version','3.6.4'),(1267,242,'_elementor_edit_mode','builder'),(1268,242,'_elementor_template_type','section'),(1269,242,'_elementor_version','3.6.5'),(1270,242,'_elementor_pro_version','3.6.4'),(1271,241,'_wp_page_template','default'),(1272,241,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1273,241,'_elementor_data','[{\"id\":\"1268de43\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d1bf8c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"42c0d10a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30a1d1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"74f936d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a6d40d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d9a0b16\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"95a74c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c803ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54dbe6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c50992d\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"a6bb104\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f6bc158\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dd322ed\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(1274,243,'_elementor_edit_mode','builder'),(1275,243,'_elementor_template_type','section'),(1276,243,'_elementor_version','3.6.5'),(1277,243,'_elementor_pro_version','3.6.4'),(1278,243,'_wp_page_template','default'),(1279,243,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1280,243,'_elementor_data','[{\"id\":\"1268de43\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d1bf8c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"42c0d10a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30a1d1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"74f936d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a6d40d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d9a0b16\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"95a74c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13c803ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54dbe6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c50992d\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"a6bb104\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f6bc158\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dd322ed\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(1281,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1282,244,'_elementor_edit_mode','builder'),(1283,244,'_elementor_template_type','widget'),(1284,245,'_elementor_edit_mode','builder'),(1285,245,'_elementor_template_type','widget'),(1286,244,'_wp_page_template','default'),(1287,244,'_elementor_version','3.6.5'),(1288,244,'_elementor_pro_version','3.6.4'),(1289,244,'_elementor_data','[{\"id\":\"7f7dc1e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}]'),(1290,246,'_elementor_edit_mode','builder'),(1291,246,'_elementor_template_type','widget'),(1292,246,'_wp_page_template','default'),(1293,246,'_elementor_version','3.6.5'),(1294,246,'_elementor_pro_version','3.6.4'),(1295,246,'_elementor_data','[{\"id\":\"7f7dc1e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}]'),(1296,244,'_elementor_page_assets','a:0:{}'),(1297,244,'_elementor_template_widget_type','text-editor'),(1298,247,'_elementor_edit_mode','builder'),(1299,247,'_elementor_template_type','widget'),(1300,248,'_elementor_edit_mode','builder'),(1301,248,'_elementor_template_type','widget'),(1302,247,'_wp_page_template','default'),(1303,247,'_elementor_version','3.6.5'),(1304,247,'_elementor_pro_version','3.6.4'),(1305,247,'_elementor_data','[{\"id\":\"7ae6aa39\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}]'),(1306,249,'_elementor_edit_mode','builder'),(1307,249,'_elementor_template_type','widget'),(1308,249,'_wp_page_template','default'),(1309,249,'_elementor_version','3.6.5'),(1310,249,'_elementor_pro_version','3.6.4'),(1311,249,'_elementor_data','[{\"id\":\"7ae6aa39\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}]'),(1312,247,'_elementor_page_assets','a:0:{}'),(1313,247,'_elementor_template_widget_type','icon-list'),(1314,250,'_elementor_edit_mode','builder'),(1315,250,'_elementor_template_type','widget'),(1316,251,'_elementor_edit_mode','builder'),(1317,251,'_elementor_template_type','widget'),(1318,250,'_wp_page_template','default'),(1319,250,'_elementor_version','3.6.5'),(1320,250,'_elementor_pro_version','3.6.4'),(1321,250,'_elementor_data','[{\"id\":\"250\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"form\"}]'),(1322,252,'_elementor_edit_mode','builder'),(1323,252,'_elementor_template_type','widget'),(1324,252,'_wp_page_template','default'),(1325,252,'_elementor_version','3.6.5'),(1326,252,'_elementor_pro_version','3.6.4'),(1327,252,'_elementor_data','[{\"id\":\"4cb52eff\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}]'),(1328,250,'_elementor_page_assets','a:0:{}'),(1329,250,'_elementor_template_widget_type','form'),(1330,253,'_elementor_edit_mode','builder'),(1331,253,'_elementor_template_type','widget'),(1332,254,'_elementor_edit_mode','builder'),(1333,254,'_elementor_template_type','widget'),(1334,253,'_wp_page_template','default'),(1335,253,'_elementor_version','3.6.5'),(1336,253,'_elementor_pro_version','3.6.4'),(1337,253,'_elementor_data','[{\"id\":\"3537c4a9\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}]'),(1338,255,'_elementor_edit_mode','builder'),(1339,255,'_elementor_template_type','widget'),(1340,255,'_wp_page_template','default'),(1341,255,'_elementor_version','3.6.5'),(1342,255,'_elementor_pro_version','3.6.4'),(1343,255,'_elementor_data','[{\"id\":\"3537c4a9\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}]'),(1344,253,'_elementor_page_assets','a:0:{}'),(1345,253,'_elementor_template_widget_type','gallery'),(1346,256,'_elementor_edit_mode','builder'),(1347,256,'_elementor_template_type','widget'),(1348,257,'_elementor_edit_mode','builder'),(1349,257,'_elementor_template_type','widget'),(1350,256,'_wp_page_template','default'),(1351,256,'_elementor_version','3.6.5'),(1352,256,'_elementor_pro_version','3.6.4'),(1353,256,'_elementor_data','[{\"id\":\"7fffa698\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1354,258,'_elementor_edit_mode','builder'),(1355,258,'_elementor_template_type','widget'),(1356,258,'_wp_page_template','default'),(1357,258,'_elementor_version','3.6.5'),(1358,258,'_elementor_pro_version','3.6.4'),(1359,258,'_elementor_data','[{\"id\":\"7fffa698\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1360,256,'_elementor_page_assets','a:0:{}'),(1361,256,'_elementor_template_widget_type','heading'),(1362,259,'_elementor_edit_mode','builder'),(1363,259,'_elementor_template_type','wp-page'),(1364,259,'_elementor_version','3.6.5'),(1365,259,'_wp_page_template','elementor_canvas'),(1366,259,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1367,259,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1368,259,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1369,259,'_elementor_pro_version','3.6.4'),(1370,260,'_elementor_edit_mode','builder'),(1371,260,'_elementor_template_type','wp-page'),(1372,260,'_elementor_version','3.6.5'),(1373,260,'_wp_page_template','elementor_canvas'),(1374,260,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1375,260,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"1e33754\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50e270f\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5700ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"261d37b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a88a0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2e37b3\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f75f8c\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fc496aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1376,260,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1377,260,'_elementor_pro_version','3.6.4'),(1378,261,'_elementor_edit_mode','builder'),(1379,261,'_elementor_template_type','wp-page'),(1380,261,'_elementor_version','3.6.5'),(1381,261,'_wp_page_template','elementor_canvas'),(1382,261,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1383,261,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9abe95b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":232}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(1384,261,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1385,261,'_elementor_pro_version','3.6.4'),(1386,238,'_elementor_global_widget_included_posts','a:2:{i:11;b:1;i:343;b:1;}'),(1387,232,'_elementor_global_widget_included_posts','a:1:{i:11;b:1;}'),(1388,235,'_elementor_global_widget_included_posts','a:2:{i:11;b:1;i:343;b:1;}'),(1389,244,'_elementor_global_widget_included_posts','a:22:{i:11;b:1;i:343;b:1;i:15;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(1390,247,'_elementor_global_widget_included_posts','a:22:{i:11;b:1;i:343;b:1;i:15;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(1391,250,'_elementor_global_widget_included_posts','a:25:{i:11;b:1;i:343;b:1;i:17;b:1;i:19;b:1;i:15;b:1;i:395;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(1392,253,'_elementor_global_widget_included_posts','a:22:{i:11;b:1;i:343;b:1;i:15;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(1393,256,'_elementor_global_widget_included_posts','a:32:{i:11;b:1;i:17;b:1;i:300;b:1;i:310;b:1;i:332;b:1;i:343;b:1;i:19;b:1;i:347;b:1;i:350;b:1;i:15;b:1;i:366;b:1;i:378;b:1;i:395;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(1394,17,'_elementor_edit_mode','builder'),(1395,17,'_elementor_template_type','wp-page'),(1396,17,'_elementor_version','3.6.5'),(1397,17,'_elementor_pro_version','3.6.4'),(1406,263,'_elementor_edit_mode','builder'),(1407,263,'_elementor_template_type','wp-page'),(1408,263,'_elementor_version','3.6.5'),(1409,263,'_elementor_pro_version','3.6.4'),(1410,264,'_elementor_edit_mode','builder'),(1411,264,'_elementor_template_type','wp-page'),(1412,264,'_elementor_version','3.6.5'),(1413,264,'_elementor_pro_version','3.6.4'),(1414,17,'_wp_page_template','elementor_canvas'),(1415,17,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1416,17,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1417,265,'_elementor_edit_mode','builder'),(1418,265,'_elementor_template_type','wp-page'),(1419,265,'_elementor_version','3.6.5'),(1420,265,'_elementor_pro_version','3.6.4'),(1421,265,'_wp_page_template','elementor_canvas'),(1422,265,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1423,265,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"278b3452\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17f668f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"295177a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6efd9e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"68162b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"17e0349c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5a8e7690\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\"},{\"text\":\"Causes\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fecdfcf\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acd05f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d9e650b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74af20d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54ff8ca9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3200d083\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2c1f3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d2c2554\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d1dc094\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d86d0f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ba49e6f\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ff0b792\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"68bbe28d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c7038a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"664c9df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ce398f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2e4545\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bdf52d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b695245\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7397c636\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"744397a0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"54bced31\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4972a774\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19ad4337\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68063e00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"3f91e683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49087ee5\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32f83ea1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b769e52\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"41df1038\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"a4b7ab\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3c8d0753\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"667a83c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d92ba5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5317a5e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72f4441e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"19da3f1a\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"779953bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4588bc63\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1c2c5fa\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"484fc6b6\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"60467cd3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2d957ac2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"71039020\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ec97de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ff81961\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f767d68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c83b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"2138d201\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"296435ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2594fe52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1376f0c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"36fd2637\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"60a7f7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f0e1944\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ebb5479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d9dc5a9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"3d799cd1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"51dfbac6\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f7ed03b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"abf24de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d50190a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_color\":\"#FBF9F5\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[{\"id\":\"61d1b118\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255f2775\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"323***1610963309784\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"12b9e850\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"3f99e314\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b1a1ac6\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e640978\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"41ea3969\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30ec7d66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b7de5ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57fc10d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"32c63ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8ff6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56621275\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f78440\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"49bd4102\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b723c59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d1d058e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"762a17d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28aac34a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5ae361\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1421a485\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"Paul Wyatt\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"82387c8\",\"image\":{\"id\":\"154\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-1.png\"}},{\"heading\":\"Franklin Barr\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"38c7e01\",\"image\":{\"id\":\"155\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/image-3.png\"}},{\"heading\":\"Natalie Melia\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"fd48ea8\",\"image\":{\"id\":\"156\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image.jpg\"}},{\"heading\":\"Arthur Weston\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"image\":{\"id\":\"157\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Testimonial.jpg\"},\"_id\":\"4d6532d\"}],\"slider_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"content_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"slide_background_color\":\"#FBF9F5\",\"slide_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"slide_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"heading_color\":\"#252425\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Noto Serif\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"subtitle_color\":\"#FCBC45\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Heebo\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#6F747E\",\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Heebo\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_typography_font_weight\":\"300\",\"columns_count\":\"3\",\"navigation\":\"none\",\"__globals__\":{\"slide_background_color\":\"\",\"heading_color\":\"\",\"content_color\":\"\",\"subtitle_color\":\"globals\\/colors?id=accent\"},\"slide_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"columns_count_tablet\":\"2\"},\"elements\":[],\"widgetType\":\"stratum-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bb622d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17545a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"26ff98bd\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"27633ecb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"449518d0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3e056546\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133a5b3\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3b878df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fe2dfb6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1424,17,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1433,267,'_wp_attached_file','2022/05/david-kovalenko-447548-unsplash.jpg'),(1434,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:43:\"2022/05/david-kovalenko-447548-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"david-kovalenko-447548-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"david-kovalenko-447548-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"david-kovalenko-447548-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"david-kovalenko-447548-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"david-kovalenko-447548-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"david-kovalenko-447548-unsplash-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1435,267,'_elementor_source_image_hash','c1ef16590b0bb1be94d8d048969f0d2a71ddff47'),(1436,268,'_wp_attached_file','2022/05/ivan-bandura-532042-unsplash.jpg'),(1437,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1439;s:4:\"file\";s:40:\"2022/05/ivan-bandura-532042-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"ivan-bandura-532042-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"ivan-bandura-532042-unsplash-1024x767.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"ivan-bandura-532042-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"ivan-bandura-532042-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"ivan-bandura-532042-unsplash-1536x1151.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"ivan-bandura-532042-unsplash-1200x899.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1438,268,'_elementor_source_image_hash','8f45d3c28a5731a03d59685358214c78f0e15fee'),(1439,269,'_wp_attached_file','2022/05/chuttersnap-176806-unsplash.jpg'),(1440,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1268;s:4:\"file\";s:39:\"2022/05/chuttersnap-176806-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"chuttersnap-176806-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"chuttersnap-176806-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"chuttersnap-176806-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"chuttersnap-176806-unsplash-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"chuttersnap-176806-unsplash-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"chuttersnap-176806-unsplash-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1441,269,'_elementor_source_image_hash','49b407428de64aff8715a4b7fc3d19dd92e9664d'),(1442,270,'_wp_attached_file','2022/05/calculator-clipboard-coffee-cup-1001763.jpg'),(1443,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1963;s:4:\"file\";s:51:\"2022/05/calculator-clipboard-coffee-cup-1001763.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"calculator-clipboard-coffee-cup-1001763-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"calculator-clipboard-coffee-cup-1001763-1024x804.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:804;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"calculator-clipboard-coffee-cup-1001763-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"calculator-clipboard-coffee-cup-1001763-768x603.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"calculator-clipboard-coffee-cup-1001763-1536x1206.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"calculator-clipboard-coffee-cup-1001763-2048x1608.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"calculator-clipboard-coffee-cup-1001763-1200x942.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:942;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:53:\"calculator-clipboard-coffee-cup-1001763-1980x1555.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:1555;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1444,270,'_elementor_source_image_hash','85fe8934a489e3be9f8fba7274dffbe4bd21fdf8'),(1445,271,'_wp_attached_file','2022/05/debby-hudson-1056837-unsplash.jpg'),(1446,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:795;s:4:\"file\";s:41:\"2022/05/debby-hudson-1056837-unsplash.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"debby-hudson-1056837-unsplash-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"debby-hudson-1056837-unsplash-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"debby-hudson-1056837-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"debby-hudson-1056837-unsplash-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1447,271,'_elementor_source_image_hash','37ab6d65f169c6ca0d9542960e777d9b03cfc261'),(1448,272,'_elementor_edit_mode','builder'),(1449,272,'_elementor_template_type','section'),(1450,272,'_elementor_version','3.6.5'),(1451,272,'_elementor_pro_version','3.6.4'),(1452,272,'_elementor_data','[{\"id\":\"69733d73\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7913eea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"98bb7de\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"90d22c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28343339\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.79999999999999982236431605997495353221893310546875},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-6\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.79999999999999982236431605997495353221893310546875},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47df3279\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53cb746a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Altera deseruisse\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Per autem iracundia\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Utamur iudicabit vix\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":14},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto Mono\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5d555475\",\"elType\":\"widget\",\"settings\":{\"text\":\"action button\",\"button_text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(223,98,54,0.8)\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2e08f5aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e5fae69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"267\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/david-kovalenko-447548-unsplash.jpg\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22fcea31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d4e4e3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"268\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49431e56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72ba8221\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43dfc143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"269\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/chuttersnap-176806-unsplash.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"Ne quis mediocrem sit\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":19},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Josefin Sans\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22},\"title_typography_text_transform\":\"uppercase\",\"title_typography_font_weight\":\"500\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68c60b1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7cb0617b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46f658d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"270\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/calculator-clipboard-coffee-cup-1001763.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"Ne quis mediocrem sit\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":19},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Josefin Sans\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22},\"title_typography_text_transform\":\"uppercase\",\"title_typography_font_weight\":\"500\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d368718\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6809e337\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a0da24d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"271\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/debby-hudson-1056837-unsplash.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"Ne quis mediocrem sit\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":19},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Josefin Sans\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22},\"title_typography_text_transform\":\"uppercase\",\"title_typography_font_weight\":\"500\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1ffddbf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1453,273,'_elementor_edit_mode','builder'),(1454,273,'_elementor_template_type','section'),(1455,273,'_elementor_version','3.6.5'),(1456,273,'_elementor_pro_version','3.6.4'),(1457,273,'_elementor_data','[{\"id\":\"69733d73\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7913eea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"98bb7de\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"90d22c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28343339\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.79999999999999982236431605997495353221893310546875},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-6\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.79999999999999982236431605997495353221893310546875},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47df3279\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53cb746a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Altera deseruisse\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Per autem iracundia\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"Utamur iudicabit vix\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":14},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto Mono\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5d555475\",\"elType\":\"widget\",\"settings\":{\"text\":\"action button\",\"button_text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(223,98,54,0.8)\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2e08f5aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e5fae69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"267\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/david-kovalenko-447548-unsplash.jpg\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22fcea31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d4e4e3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"268\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49431e56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72ba8221\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43dfc143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"269\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/chuttersnap-176806-unsplash.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"Ne quis mediocrem sit\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":19},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Josefin Sans\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22},\"title_typography_text_transform\":\"uppercase\",\"title_typography_font_weight\":\"500\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68c60b1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7cb0617b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46f658d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"270\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/calculator-clipboard-coffee-cup-1001763.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"Ne quis mediocrem sit\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":19},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Josefin Sans\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22},\"title_typography_text_transform\":\"uppercase\",\"title_typography_font_weight\":\"500\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d368718\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6809e337\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a0da24d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"271\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/debby-hudson-1056837-unsplash.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"Ne quis mediocrem sit\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":19},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Josefin Sans\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":22},\"title_typography_text_transform\":\"uppercase\",\"title_typography_font_weight\":\"500\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1ffddbf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto Mono\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1458,272,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1459,272,'envato_elements_download_event','135-3-c665d4805631b9a8bf464e65129b2f58-4426eb83647cc19026204146e00380c9'),(1460,274,'_wp_attached_file','2022/05/pexels-photo-556068.jpeg'),(1461,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:32:\"2022/05/pexels-photo-556068.jpeg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"pexels-photo-556068-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"pexels-photo-556068-1024x682.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-556068-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"pexels-photo-556068-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-556068-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1462,274,'_elementor_source_image_hash','00f42f77afa8ab4a972183c0863adbf7c7433bbc'),(1463,275,'_wp_attached_file','2022/05/darkside.png'),(1464,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:20:\"2022/05/darkside.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"darkside-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1465,275,'_elementor_source_image_hash','b11460b9cc6141a701e771e45bc740e22be38b8f'),(1466,276,'_wp_attached_file','2022/05/digit.png'),(1467,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:17:\"2022/05/digit.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"digit-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1468,276,'_elementor_source_image_hash','4cb3fe59cee57af738cd72298fc9de67ba0bccb6'),(1469,277,'_wp_attached_file','2022/05/bolier.png'),(1470,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2022/05/bolier.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"bolier-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1471,277,'_elementor_source_image_hash','e1d390dd15215b0753dd2f04024880b275dee197'),(1472,278,'_elementor_edit_mode','builder'),(1473,278,'_elementor_template_type','section'),(1474,278,'_elementor_version','3.6.5'),(1475,278,'_elementor_pro_version','3.6.4'),(1476,278,'_elementor_data','[{\"id\":\"19cb0027\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e8e4da\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6369ba6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"274\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-556068.jpeg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#111111\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.289999999999999980015985556747182272374629974365234375},\"margin\":{\"unit\":\"px\",\"top\":\"68\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"123b2ff4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"658e6f02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab63f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carousel\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"100\",\"header_size\":\"h5\",\"size\":\"medium\",\"typography_font_family\":\"Proza Libre\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"238e210a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"size\":\"xxl\",\"typography_font_family\":\"Proza Libre\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-100\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.79999999999999982236431605997495353221893310546875},\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1967cfbe\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":6},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c5b734e\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.\",\"name\":\"John Doe\",\"title\":\"CEO\",\"image\":{\"id\":\"275\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/darkside.png\"},\"_id\":\"c5f303c\"},{\"content\":\"I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.\",\"name\":\"John Doe\",\"title\":\"CEO\",\"image\":{\"id\":\"276\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/digit.png\"},\"_id\":\"bea032f\"},{\"content\":\"I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.\",\"name\":\"John Doe\",\"title\":\"CEO\",\"image\":{\"id\":\"277\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/bolier.png\"},\"_id\":\"7590ee0\"}],\"slides_per_view\":\"1\",\"slides_to_scroll\":\"1\",\"space_between\":{\"unit\":\"px\",\"size\":30},\"slide_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Source Sans Pro\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"content_typography_font_style\":\"oblique\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"name_color\":\"#111111\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Proza Libre\",\"name_typography_font_size\":{\"unit\":\"rem\",\"size\":1.100000000000000088817841970012523233890533447265625},\"name_typography_font_weight\":\"400\",\"name_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Proza Libre\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"title_typography_font_weight\":\"100\",\"image_size\":{\"unit\":\"px\",\"size\":66},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"image_border_color\":\"rgba(0,0,0,0)\",\"image_border_width\":{\"unit\":\"px\",\"size\":0},\"pagination_size\":{\"unit\":\"px\",\"size\":8},\"pagination_color\":\"#ffffff\",\"layout\":\"image_stacked\",\"alignment\":\"left\",\"show_arrows\":\"\",\"pagination\":\"\",\"autoplay_speed\":8000,\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"image_border_radius\":{\"unit\":\"px\",\"size\":0},\"arrows_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1477,279,'_elementor_edit_mode','builder'),(1478,279,'_elementor_template_type','section'),(1479,279,'_elementor_version','3.6.5'),(1480,279,'_elementor_pro_version','3.6.4'),(1481,279,'_elementor_data','[{\"id\":\"19cb0027\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e8e4da\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6369ba6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"274\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-556068.jpeg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#111111\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.289999999999999980015985556747182272374629974365234375},\"margin\":{\"unit\":\"px\",\"top\":\"68\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"123b2ff4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"658e6f02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab63f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carousel\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"100\",\"header_size\":\"h5\",\"size\":\"medium\",\"typography_font_family\":\"Proza Libre\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"238e210a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"size\":\"xxl\",\"typography_font_family\":\"Proza Libre\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-100\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.79999999999999982236431605997495353221893310546875},\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1967cfbe\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":6},\"align\":\"left\",\"_animation\":\"fadeInUp\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c5b734e\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.\",\"name\":\"John Doe\",\"title\":\"CEO\",\"image\":{\"id\":\"275\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/darkside.png\"},\"_id\":\"c5f303c\"},{\"content\":\"I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.\",\"name\":\"John Doe\",\"title\":\"CEO\",\"image\":{\"id\":\"276\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/digit.png\"},\"_id\":\"bea032f\"},{\"content\":\"I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.\",\"name\":\"John Doe\",\"title\":\"CEO\",\"image\":{\"id\":\"277\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/bolier.png\"},\"_id\":\"7590ee0\"}],\"slides_per_view\":\"1\",\"slides_to_scroll\":\"1\",\"space_between\":{\"unit\":\"px\",\"size\":30},\"slide_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"30\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Source Sans Pro\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"content_typography_font_style\":\"oblique\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"name_color\":\"#111111\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Proza Libre\",\"name_typography_font_size\":{\"unit\":\"rem\",\"size\":1.100000000000000088817841970012523233890533447265625},\"name_typography_font_weight\":\"400\",\"name_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Proza Libre\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"title_typography_font_weight\":\"100\",\"image_size\":{\"unit\":\"px\",\"size\":66},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"image_border_color\":\"rgba(0,0,0,0)\",\"image_border_width\":{\"unit\":\"px\",\"size\":0},\"pagination_size\":{\"unit\":\"px\",\"size\":8},\"pagination_color\":\"#ffffff\",\"layout\":\"image_stacked\",\"alignment\":\"left\",\"show_arrows\":\"\",\"pagination\":\"\",\"autoplay_speed\":8000,\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"image_border_radius\":{\"unit\":\"px\",\"size\":0},\"arrows_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1482,278,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1483,278,'envato_elements_download_event','72-3-34d2cc762876498c8f6be5405a48e6e2-0be6118f9897f825c4e89e419ae5ff56'),(1484,280,'_wp_attached_file','2022/05/linebgoverlay.png'),(1485,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:25:\"2022/05/linebgoverlay.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"linebgoverlay-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"linebgoverlay-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"linebgoverlay-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"linebgoverlay-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1486,280,'_elementor_source_image_hash','9ed5ec6b3f9baa942c56c44a6b6d75d8bd60198a'),(1487,281,'_wp_attached_file','2022/05/jamie-street-105287-unsplash.jpg'),(1488,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1173;s:4:\"file\";s:40:\"2022/05/jamie-street-105287-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"jamie-street-105287-unsplash-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"jamie-street-105287-unsplash-1024x626.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"jamie-street-105287-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"jamie-street-105287-unsplash-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"jamie-street-105287-unsplash-1536x938.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:938;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"jamie-street-105287-unsplash-1200x733.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1489,281,'_elementor_source_image_hash','1d0d1e71cea1fb4a06aa30c27f2d79d1d1abec7d'),(1490,282,'_wp_attached_file','2022/05/edgar-chaparro-1056818-unsplash.jpg'),(1491,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:43:\"2022/05/edgar-chaparro-1056818-unsplash.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"edgar-chaparro-1056818-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"edgar-chaparro-1056818-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"edgar-chaparro-1056818-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"edgar-chaparro-1056818-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1492,282,'_elementor_source_image_hash','30000e8bcebcd7103c2502575a968c9b00481b11'),(1493,283,'_wp_attached_file','2022/05/aleksandar-jason-137349-unsplash.jpg'),(1494,283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:44:\"2022/05/aleksandar-jason-137349-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"aleksandar-jason-137349-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"aleksandar-jason-137349-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"aleksandar-jason-137349-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"aleksandar-jason-137349-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"aleksandar-jason-137349-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"aleksandar-jason-137349-unsplash-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1495,283,'_elementor_source_image_hash','5740bf34f6044cb98b2e763520054815d35c7ef0'),(1496,284,'_wp_attached_file','2022/05/xavier-teo-492427-unsplash.jpg'),(1497,284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:38:\"2022/05/xavier-teo-492427-unsplash.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"xavier-teo-492427-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"xavier-teo-492427-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"xavier-teo-492427-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"xavier-teo-492427-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1498,284,'_elementor_source_image_hash','cdca55c58ac987779ae65e03c4aa370cc6d95fff'),(1499,285,'_wp_attached_file','2022/05/aideal-hwa-600523-unsplash.jpg'),(1500,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:38:\"2022/05/aideal-hwa-600523-unsplash.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"aideal-hwa-600523-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"aideal-hwa-600523-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"aideal-hwa-600523-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"aideal-hwa-600523-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1501,285,'_elementor_source_image_hash','3a01d1ea63e768e13928a77ac63a40ec54aa4e4e'),(1502,286,'_wp_attached_file','2022/05/nickey-kolev-544018-unsplash.jpg'),(1503,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:40:\"2022/05/nickey-kolev-544018-unsplash.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"nickey-kolev-544018-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"nickey-kolev-544018-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"nickey-kolev-544018-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"nickey-kolev-544018-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1504,286,'_elementor_source_image_hash','37014ce7d40559062a0b7bce0ca447c55031da5d'),(1505,287,'_wp_attached_file','2022/05/halanna-halila-557324-unsplash.jpg'),(1506,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:42:\"2022/05/halanna-halila-557324-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"halanna-halila-557324-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"halanna-halila-557324-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"halanna-halila-557324-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"halanna-halila-557324-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"halanna-halila-557324-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"halanna-halila-557324-unsplash-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1507,287,'_elementor_source_image_hash','26c986cf7b2fa2366489c6231d2f15e2c46aaa6c'),(1508,288,'_elementor_edit_mode','builder'),(1509,288,'_elementor_template_type','section'),(1510,288,'_elementor_version','3.6.5'),(1511,288,'_elementor_pro_version','3.6.4'),(1512,288,'_elementor_data','[{\"id\":\"6b01dc06\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"280\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/linebgoverlay.png\"},\"background_overlay_position\":\"top center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a60d287\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63731050\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Portfolio\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"px\",\"size\":60},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":50},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5830c63b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eu iusto dolorum pro, facer oportere duo ne. <br>Cum ei commune instructior. Ne dicat qualisque ullamcorper ius, <br>ubique dolorum consetetur in vis. Nisl commodo te sed.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5647f0f5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"281\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/jamie-street-105287-unsplash.jpg\"},{\"id\":\"282\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/edgar-chaparro-1056818-unsplash.jpg\"},{\"id\":\"283\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aleksandar-jason-137349-unsplash.jpg\"},{\"id\":\"284\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/xavier-teo-492427-unsplash.jpg\"},{\"id\":\"285\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aideal-hwa-600523-unsplash.jpg\"},{\"id\":\"286\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/nickey-kolev-544018-unsplash.jpg\"},{\"id\":\"287\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/halanna-halila-557324-unsplash.jpg\"}],\"thumbnail_size\":\"custom\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows_size\":{\"unit\":\"px\",\"size\":10},\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10},\"dots_color\":\"#1896fe\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"600\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1513,289,'_elementor_edit_mode','builder'),(1514,289,'_elementor_template_type','section'),(1515,289,'_elementor_version','3.6.5'),(1516,289,'_elementor_pro_version','3.6.4'),(1517,289,'_elementor_data','[{\"id\":\"6b01dc06\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"280\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/linebgoverlay.png\"},\"background_overlay_position\":\"top center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a60d287\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63731050\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Portfolio\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"px\",\"size\":60},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":50},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5830c63b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eu iusto dolorum pro, facer oportere duo ne. <br>Cum ei commune instructior. Ne dicat qualisque ullamcorper ius, <br>ubique dolorum consetetur in vis. Nisl commodo te sed.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5647f0f5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"281\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/jamie-street-105287-unsplash.jpg\"},{\"id\":\"282\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/edgar-chaparro-1056818-unsplash.jpg\"},{\"id\":\"283\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aleksandar-jason-137349-unsplash.jpg\"},{\"id\":\"284\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/xavier-teo-492427-unsplash.jpg\"},{\"id\":\"285\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aideal-hwa-600523-unsplash.jpg\"},{\"id\":\"286\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/nickey-kolev-544018-unsplash.jpg\"},{\"id\":\"287\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/halanna-halila-557324-unsplash.jpg\"}],\"thumbnail_size\":\"custom\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows_size\":{\"unit\":\"px\",\"size\":10},\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10},\"dots_color\":\"#1896fe\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"600\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1518,288,'_elementor_page_assets','a:0:{}'),(1519,288,'envato_elements_download_event','136-3-fc37602abad173a9d9d95d89bbe6bb80-266a22f51430fe595e87bd54f96d1079'),(1520,291,'_elementor_edit_mode','builder'),(1521,291,'_elementor_template_type','wp-page'),(1522,291,'_elementor_version','3.6.5'),(1523,291,'_elementor_pro_version','3.6.4'),(1524,291,'_wp_page_template','elementor_canvas'),(1525,291,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1526,291,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"278b3452\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17f668f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"295177a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6efd9e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"68162b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"17e0349c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5a8e7690\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\"},{\"text\":\"Causes\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fecdfcf\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acd05f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d9e650b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74af20d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54ff8ca9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3200d083\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2c1f3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d2c2554\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d1dc094\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d86d0f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ba49e6f\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ff0b792\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"68bbe28d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c7038a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"664c9df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ce398f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2e4545\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bdf52d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b695245\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7397c636\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"744397a0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"54bced31\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4972a774\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19ad4337\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68063e00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"3f91e683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49087ee5\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32f83ea1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b769e52\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"41df1038\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"a4b7ab\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3c8d0753\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"667a83c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d92ba5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5317a5e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72f4441e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"19da3f1a\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"779953bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4588bc63\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1c2c5fa\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"484fc6b6\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"60467cd3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2d957ac2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"71039020\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ec97de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ff81961\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f767d68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c83b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"2138d201\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"296435ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2594fe52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1376f0c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"36fd2637\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"60a7f7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f0e1944\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ebb5479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d9dc5a9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"3d799cd1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"51dfbac6\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f7ed03b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"abf24de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d50190a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_color\":\"#FBF9F5\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[{\"id\":\"61d1b118\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255f2775\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"323***1610963309784\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"12b9e850\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"3f99e314\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b1a1ac6\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e640978\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"41ea3969\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30ec7d66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b7de5ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57fc10d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"32c63ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8ff6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56621275\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f78440\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"49bd4102\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b723c59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d1d058e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"762a17d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28aac34a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5ae361\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1421a485\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"Paul Wyatt\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"82387c8\",\"image\":{\"id\":\"154\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-1.png\"}},{\"heading\":\"Franklin Barr\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"38c7e01\",\"image\":{\"id\":\"155\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/image-3.png\"}},{\"heading\":\"Natalie Melia\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"fd48ea8\",\"image\":{\"id\":\"156\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image.jpg\"}},{\"heading\":\"Arthur Weston\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"image\":{\"id\":\"157\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Testimonial.jpg\"},\"_id\":\"4d6532d\"}],\"slider_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"content_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"slide_background_color\":\"#FBF9F5\",\"slide_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"slide_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"heading_color\":\"#252425\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Noto Serif\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"subtitle_color\":\"#FCBC45\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Heebo\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#6F747E\",\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Heebo\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_typography_font_weight\":\"300\",\"columns_count\":\"3\",\"navigation\":\"none\",\"__globals__\":{\"slide_background_color\":\"\",\"heading_color\":\"\",\"content_color\":\"\",\"subtitle_color\":\"globals\\/colors?id=accent\"},\"slide_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"columns_count_tablet\":\"2\"},\"elements\":[],\"widgetType\":\"stratum-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bb622d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17545a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"26ff98bd\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"27633ecb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"449518d0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3e056546\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133a5b3\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3b878df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fe2dfb6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1527,291,'_elementor_page_assets','a:1:{s:6:\"styles\";a:20:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";}}'),(1528,292,'_elementor_edit_mode','builder'),(1529,292,'_elementor_template_type','wp-page'),(1530,292,'_elementor_version','3.6.5'),(1531,292,'_elementor_pro_version','3.6.4'),(1532,292,'_wp_page_template','elementor_canvas'),(1533,292,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1534,292,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"278b3452\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17f668f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"295177a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6efd9e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"68162b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"17e0349c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5a8e7690\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\"},{\"text\":\"Causes\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fecdfcf\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acd05f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d9e650b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Causes\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74af20d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Give Us Now\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54ff8ca9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3200d083\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2c1f3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d2c2554\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d1dc094\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d86d0f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ba49e6f\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ff0b792\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"68bbe28d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c7038a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"664c9df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ce398f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2e4545\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bdf52d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b695245\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7397c636\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"744397a0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"54bced31\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4972a774\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"19ad4337\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68063e00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"3f91e683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49087ee5\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32f83ea1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b769e52\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"41df1038\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"a4b7ab\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3c8d0753\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"667a83c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d92ba5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5317a5e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72f4441e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"19da3f1a\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Care\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"779953bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4588bc63\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":70},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"1c2c5fa\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"484fc6b6\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"60467cd3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2d957ac2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"71039020\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ec97de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-A9QS3N7.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ff81961\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f767d68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c83b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"2138d201\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"296435ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2594fe52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1376f0c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"36fd2637\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"60a7f7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f0e1944\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ebb5479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d9dc5a9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"3d799cd1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"51dfbac6\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":158,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f7ed03b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"abf24de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d50190a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_color\":\"#FBF9F5\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[{\"id\":\"61d1b118\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255f2775\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"323***1610963309784\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"12b9e850\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"3f99e314\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b1a1ac6\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Donation Can Change Someone\\u2019s Life\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e640978\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"41ea3969\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30ec7d66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b7de5ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57fc10d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"32c63ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca8ff6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56621275\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f78440\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"49bd4102\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b723c59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Feedbacks\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d1d058e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"762a17d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28aac34a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c5ae361\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1421a485\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"Paul Wyatt\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"82387c8\",\"image\":{\"id\":\"154\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-1.png\"}},{\"heading\":\"Franklin Barr\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"38c7e01\",\"image\":{\"id\":\"155\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/image-3.png\"}},{\"heading\":\"Natalie Melia\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_id\":\"fd48ea8\",\"image\":{\"id\":\"156\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image.jpg\"}},{\"heading\":\"Arthur Weston\",\"subtitle\":\"Volunteer\",\"content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna\",\"image\":{\"id\":\"157\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Testimonial.jpg\"},\"_id\":\"4d6532d\"}],\"slider_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"content_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"slide_background_color\":\"#FBF9F5\",\"slide_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"slide_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"heading_color\":\"#252425\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Noto Serif\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"subtitle_color\":\"#FCBC45\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Heebo\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#6F747E\",\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Heebo\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_typography_font_weight\":\"300\",\"columns_count\":\"3\",\"navigation\":\"none\",\"__globals__\":{\"slide_background_color\":\"\",\"heading_color\":\"\",\"content_color\":\"\",\"subtitle_color\":\"globals\\/colors?id=accent\"},\"slide_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"columns_count_tablet\":\"2\"},\"elements\":[],\"widgetType\":\"stratum-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bb622d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17545a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"26ff98bd\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":159,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-1.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"27633ecb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"449518d0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":160,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-2.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3e056546\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"133a5b3\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3b878df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fe2dfb6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":162,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-4.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1535,292,'_elementor_page_assets','a:1:{s:6:\"styles\";a:20:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";}}'),(1536,293,'_elementor_edit_mode','builder'),(1537,293,'_elementor_template_type','wp-page'),(1538,293,'_elementor_version','3.6.5'),(1539,293,'_elementor_pro_version','3.6.4'),(1540,293,'_wp_page_template','elementor_canvas'),(1541,293,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1542,293,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e288479\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"6\",\"isLinked\":false},\"z_index\":3},\"elements\":[{\"id\":\"495ce4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ddeea6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1543,293,'_elementor_page_assets','a:1:{s:6:\"styles\";a:20:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";}}'),(1546,294,'_elementor_edit_mode','builder'),(1547,294,'_elementor_template_type','wp-page'),(1548,294,'_elementor_version','3.6.5'),(1549,294,'_elementor_pro_version','3.6.4'),(1550,294,'_wp_page_template','elementor_canvas'),(1551,294,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1552,294,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e288479\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"6\",\"isLinked\":false},\"z_index\":3},\"elements\":[{\"id\":\"495ce4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ddeea6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1553,294,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1554,294,'_elementor_css','a:6:{s:4:\"time\";i:1652771129;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:10;s:6:\"Roboto\";i:15;s:4:\"Muli\";i:16;s:6:\"Nunito\";i:19;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";i:11;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1555,295,'_elementor_edit_mode','builder'),(1556,295,'_elementor_template_type','wp-page'),(1557,295,'_elementor_version','3.6.5'),(1558,295,'_elementor_pro_version','3.6.4'),(1559,295,'_wp_page_template','elementor_canvas'),(1560,295,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1561,295,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e288479\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-7\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"6\",\"isLinked\":false},\"z_index\":3},\"elements\":[{\"id\":\"495ce4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ddeea6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1562,295,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1563,295,'_elementor_css','a:6:{s:4:\"time\";i:1652771129;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:10;s:6:\"Roboto\";i:15;s:4:\"Muli\";i:16;s:6:\"Nunito\";i:19;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";i:11;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1564,296,'_elementor_edit_mode','builder'),(1565,296,'_elementor_template_type','wp-page'),(1566,296,'_elementor_version','3.6.5'),(1567,296,'_elementor_pro_version','3.6.4'),(1568,296,'_wp_page_template','elementor_canvas'),(1569,296,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1570,296,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1571,296,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1572,296,'_elementor_css','a:6:{s:4:\"time\";i:1652771129;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:10;s:6:\"Roboto\";i:15;s:4:\"Muli\";i:16;s:6:\"Nunito\";i:19;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";i:11;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1573,297,'_elementor_edit_mode','builder'),(1574,297,'_elementor_template_type','widget'),(1575,298,'_elementor_edit_mode','builder'),(1576,298,'_elementor_template_type','widget'),(1577,297,'_wp_page_template','default'),(1578,297,'_elementor_version','3.6.5'),(1579,297,'_elementor_pro_version','3.6.4'),(1580,297,'_elementor_data','[{\"id\":\"297\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}]'),(1581,299,'_elementor_edit_mode','builder'),(1582,299,'_elementor_template_type','widget'),(1583,299,'_wp_page_template','default'),(1584,299,'_elementor_version','3.6.5'),(1585,299,'_elementor_pro_version','3.6.4'),(1586,299,'_elementor_data','[{\"id\":\"6b604f82\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}]'),(1587,297,'_elementor_page_assets','a:0:{}'),(1588,297,'_elementor_template_widget_type','nav-menu'),(1597,297,'_elementor_global_widget_included_posts','a:28:{i:300;b:1;i:11;b:1;i:17;b:1;i:310;b:1;i:343;b:1;i:366;b:1;i:19;b:1;i:15;b:1;i:395;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(1598,301,'_elementor_edit_mode','builder'),(1599,301,'_elementor_template_type','wp-page'),(1600,301,'_elementor_version','3.6.5'),(1601,301,'_wp_page_template','elementor_canvas'),(1602,301,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1603,301,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9abe95b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":232}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(1604,301,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1605,301,'_elementor_pro_version','3.6.4'),(1606,301,'_elementor_css','a:6:{s:4:\"time\";i:1652771109;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:30;s:6:\"Roboto\";i:35;s:4:\"Muli\";i:36;s:6:\"Nunito\";i:39;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"d8531ff\";i:1;s:7:\"d8531ff\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1607,302,'_elementor_edit_mode','builder'),(1608,302,'_elementor_template_type','wp-page'),(1609,302,'_elementor_version','3.6.5'),(1610,302,'_wp_page_template','elementor_canvas'),(1611,302,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1612,302,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9abe95b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":232}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(1613,302,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1614,302,'_elementor_pro_version','3.6.4'),(1615,302,'_elementor_css','a:6:{s:4:\"time\";i:1652771109;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:30;s:6:\"Roboto\";i:35;s:4:\"Muli\";i:36;s:6:\"Nunito\";i:39;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"d8531ff\";i:1;s:7:\"d8531ff\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1616,303,'_elementor_edit_mode','builder'),(1617,303,'_elementor_template_type','wp-page'),(1618,303,'_elementor_version','3.6.5'),(1619,303,'_wp_page_template','elementor_canvas'),(1620,303,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1621,303,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f239fac\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(1622,303,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(1623,303,'_elementor_pro_version','3.6.4'),(1624,303,'_elementor_css','a:6:{s:4:\"time\";i:1652771109;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:30;s:6:\"Roboto\";i:35;s:4:\"Muli\";i:36;s:6:\"Nunito\";i:39;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"d8531ff\";i:1;s:7:\"d8531ff\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1625,304,'_elementor_edit_mode','builder'),(1626,304,'_elementor_template_type','wp-page'),(1627,304,'_elementor_version','3.6.5'),(1628,304,'_elementor_pro_version','3.6.4'),(1629,304,'_wp_page_template','elementor_canvas'),(1630,304,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1631,304,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1632,304,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1633,305,'_elementor_edit_mode','builder'),(1634,305,'_elementor_template_type','wp-page'),(1635,305,'_elementor_version','3.6.5'),(1636,305,'_elementor_pro_version','3.6.4'),(1637,305,'_wp_page_template','elementor_canvas'),(1638,305,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1639,305,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"173415eb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1640,305,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1641,306,'_elementor_edit_mode','builder'),(1642,306,'_elementor_template_type','wp-page'),(1643,306,'_elementor_version','3.6.5'),(1644,306,'_elementor_pro_version','3.6.4'),(1645,306,'_wp_page_template','elementor_canvas'),(1646,306,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1647,306,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1648,306,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1650,307,'_elementor_edit_mode','builder'),(1651,307,'_elementor_template_type','wp-page'),(1652,307,'_elementor_version','3.6.5'),(1653,307,'_elementor_pro_version','3.6.4'),(1654,307,'_wp_page_template','elementor_canvas'),(1655,307,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1656,307,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1657,307,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1658,307,'_elementor_css','a:6:{s:4:\"time\";i:1652771754;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:10;s:6:\"Roboto\";i:15;s:4:\"Muli\";i:16;s:6:\"Nunito\";i:19;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";i:11;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1659,308,'_elementor_edit_mode','builder'),(1660,308,'_elementor_template_type','wp-page'),(1661,308,'_elementor_version','3.6.5'),(1662,308,'_elementor_pro_version','3.6.4'),(1663,308,'_wp_page_template','elementor_canvas'),(1664,308,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1665,308,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"270ff56\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5f9009f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a19c55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd02de8\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Medicine\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9768e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0a40d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f76a298\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c3d91da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92991d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"831d313\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25bfd0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13398ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7fde03a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb0fb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"183c259\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eea9c4b\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838402e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0b9b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"60b51e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1666,308,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1667,308,'_elementor_css','a:6:{s:4:\"time\";i:1652771754;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:10;s:6:\"Roboto\";i:15;s:4:\"Muli\";i:16;s:6:\"Nunito\";i:19;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";i:11;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1668,309,'_elementor_edit_mode','builder'),(1669,309,'_elementor_template_type','wp-page'),(1670,309,'_elementor_version','3.6.5'),(1671,309,'_elementor_pro_version','3.6.4'),(1672,309,'_wp_page_template','elementor_canvas'),(1673,309,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1674,309,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1675,309,'_elementor_page_assets','a:1:{s:6:\"styles\";a:16:{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\";}}'),(1676,309,'_elementor_css','a:6:{s:4:\"time\";i:1652771754;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:10;s:6:\"Roboto\";i:15;s:4:\"Muli\";i:16;s:6:\"Nunito\";i:19;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";i:11;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1688,311,'_elementor_edit_mode','builder'),(1689,311,'_elementor_template_type','wp-page'),(1690,311,'_elementor_version','3.6.5'),(1691,311,'_elementor_pro_version','3.6.4'),(1692,311,'_wp_page_template','elementor_canvas'),(1693,311,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1694,311,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1695,311,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1696,312,'_elementor_edit_mode','builder'),(1697,312,'_elementor_template_type','wp-page'),(1698,312,'_elementor_version','3.6.5'),(1699,312,'_elementor_pro_version','3.6.4'),(1700,312,'_wp_page_template','elementor_canvas'),(1701,312,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1702,312,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.10600000000000164845914696343243122100830078125,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"left\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6ba2d7a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.236999999999998323119143606163561344146728515625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true},{\"id\":\"53944c7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25.2890000000000014779288903810083866119384765625,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"People That Needs Medicine\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"People That Needs Food\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"Bring Water To The Children\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1703,312,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1704,313,'_elementor_edit_mode','builder'),(1705,313,'_elementor_template_type','wp-page'),(1706,313,'_elementor_version','3.6.5'),(1707,313,'_elementor_pro_version','3.6.4'),(1708,313,'_wp_page_template','elementor_canvas'),(1709,313,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}');
INSERT INTO `wp_postmeta` VALUES (1710,313,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"148\",\"bottom\":\"40\",\"left\":\"200\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1711,313,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1713,314,'_edit_lock','1652848674:1'),(1714,314,'_elementor_edit_mode','builder'),(1715,314,'_elementor_template_type','wp-page'),(1716,314,'_elementor_version','3.6.5'),(1717,314,'_elementor_pro_version','3.6.4'),(1718,316,'_elementor_edit_mode','builder'),(1719,316,'_elementor_template_type','page'),(1720,316,'_elementor_version','3.6.5'),(1721,316,'_elementor_pro_version','3.6.4'),(1722,317,'_elementor_edit_mode','builder'),(1723,317,'_elementor_template_type','page'),(1724,317,'_elementor_version','3.6.5'),(1725,317,'_elementor_pro_version','3.6.4'),(1726,316,'_wp_page_template','elementor_header_footer'),(1727,316,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1728,316,'_elementor_data','[{\"id\":\"7ba64005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bd50e19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23fcea31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ee5d42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25d10593\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes Details\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1057a6b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69d14721\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Causes Details\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8abee8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b82184f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"576bb10c\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59165860\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbca4e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"734d03fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a945f75\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5d7c1270\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"260302ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1523c6cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19be4611\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"659fcc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2db56a11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dc9bf94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1394c90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70c7455f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6433d14a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"258e5487\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"\",\"background_motion_fx_translateY_effect\":\"\",\"background_motion_fx_translateY_direction\":\"\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_translateX_effect\":\"\",\"background_motion_fx_translateX_direction\":\"\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_opacity_effect\":\"\",\"background_motion_fx_opacity_direction\":\"out-in\",\"background_motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_blur_effect\":\"\",\"background_motion_fx_blur_direction\":\"out-in\",\"background_motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"background_motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_rotateZ_direction\":\"\",\"background_motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_scale_effect\":\"\",\"background_motion_fx_scale_direction\":\"out-in\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"background_motion_fx_range\":\"\",\"background_motion_fx_motion_fx_mouse\":\"\",\"background_motion_fx_mouseTrack_effect\":\"\",\"background_motion_fx_mouseTrack_direction\":\"\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_tilt_direction\":\"\",\"background_motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sticky\":\"\",\"sticky_on\":[\"desktop\",\"tablet\",\"mobile\"],\"sticky_offset\":0,\"sticky_effects_offset\":0,\"_attributes\":\"\",\"custom_css\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e716b92\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"\",\"background_motion_fx_translateY_effect\":\"\",\"background_motion_fx_translateY_direction\":\"\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_translateX_effect\":\"\",\"background_motion_fx_translateX_direction\":\"\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_opacity_effect\":\"\",\"background_motion_fx_opacity_direction\":\"out-in\",\"background_motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_blur_effect\":\"\",\"background_motion_fx_blur_direction\":\"out-in\",\"background_motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"background_motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_rotateZ_direction\":\"\",\"background_motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_scale_effect\":\"\",\"background_motion_fx_scale_direction\":\"out-in\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"background_motion_fx_range\":\"\",\"background_motion_fx_motion_fx_mouse\":\"\",\"background_motion_fx_mouseTrack_effect\":\"\",\"background_motion_fx_mouseTrack_direction\":\"\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_tilt_direction\":\"\",\"background_motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_attributes\":\"\",\"custom_css\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14a4eda2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sticky\":\"\",\"sticky_on\":[\"desktop\",\"tablet\",\"mobile\"],\"sticky_offset\":0,\"sticky_effects_offset\":0,\"sticky_parent\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34171fc7\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"ekit_socialshare_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"facebook\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sticky\":\"\",\"sticky_on\":[\"desktop\",\"tablet\",\"mobile\"],\"sticky_offset\":0,\"sticky_effects_offset\":0,\"sticky_parent\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6831d52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.9560000000000030695446184836328029632568359375,\"jet_sticky_column_sticky_enable\":\"\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"598f5939\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47f68c66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51294e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b366eee\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"7c070560\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"35ce358b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e61f744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_text_color\":\"\"},\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"button_hover_border_color\":\"#FF5722\",\"hover_animation\":\"float\",\"align\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f1d1ca4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"566b2621\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"287de27c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Causes\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7304cac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"377c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f5a9b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"71397be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ca5d1e2\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f4dd76f\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"5dd62543\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5c26ae81\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ad2c1f0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76674cf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7756bcfe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"403963f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d5c5731\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bffc66b\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"5f4f66c5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"90fc3f2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ee32fdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b2e3ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"303ae8cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6549779c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51804c68\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308aa82c\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"428f15a3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49752d02\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1729,318,'_elementor_edit_mode','builder'),(1730,318,'_elementor_template_type','page'),(1731,318,'_elementor_version','3.6.5'),(1732,318,'_elementor_pro_version','3.6.4'),(1733,318,'_wp_page_template','elementor_header_footer'),(1734,318,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1735,318,'_elementor_data','[{\"id\":\"7ba64005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bd50e19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23fcea31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ee5d42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25d10593\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes Details\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1057a6b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69d14721\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Causes Details\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8abee8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b82184f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"576bb10c\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59165860\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbca4e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"734d03fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a945f75\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5d7c1270\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"260302ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1523c6cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19be4611\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"659fcc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2db56a11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dc9bf94\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1394c90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70c7455f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6433d14a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"258e5487\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"\",\"background_motion_fx_translateY_effect\":\"\",\"background_motion_fx_translateY_direction\":\"\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_translateX_effect\":\"\",\"background_motion_fx_translateX_direction\":\"\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_opacity_effect\":\"\",\"background_motion_fx_opacity_direction\":\"out-in\",\"background_motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_blur_effect\":\"\",\"background_motion_fx_blur_direction\":\"out-in\",\"background_motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"background_motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_rotateZ_direction\":\"\",\"background_motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_scale_effect\":\"\",\"background_motion_fx_scale_direction\":\"out-in\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"background_motion_fx_range\":\"\",\"background_motion_fx_motion_fx_mouse\":\"\",\"background_motion_fx_mouseTrack_effect\":\"\",\"background_motion_fx_mouseTrack_direction\":\"\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_tilt_direction\":\"\",\"background_motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sticky\":\"\",\"sticky_on\":[\"desktop\",\"tablet\",\"mobile\"],\"sticky_offset\":0,\"sticky_effects_offset\":0,\"_attributes\":\"\",\"custom_css\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e716b92\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"\",\"background_motion_fx_translateY_effect\":\"\",\"background_motion_fx_translateY_direction\":\"\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_translateX_effect\":\"\",\"background_motion_fx_translateX_direction\":\"\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_opacity_effect\":\"\",\"background_motion_fx_opacity_direction\":\"out-in\",\"background_motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_blur_effect\":\"\",\"background_motion_fx_blur_direction\":\"out-in\",\"background_motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"background_motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_rotateZ_direction\":\"\",\"background_motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"background_motion_fx_scale_effect\":\"\",\"background_motion_fx_scale_direction\":\"out-in\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"background_motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"background_motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"background_motion_fx_range\":\"\",\"background_motion_fx_motion_fx_mouse\":\"\",\"background_motion_fx_mouseTrack_effect\":\"\",\"background_motion_fx_mouseTrack_direction\":\"\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_tilt_direction\":\"\",\"background_motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_attributes\":\"\",\"custom_css\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14a4eda2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sticky\":\"\",\"sticky_on\":[\"desktop\",\"tablet\",\"mobile\"],\"sticky_offset\":0,\"sticky_effects_offset\":0,\"sticky_parent\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34171fc7\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"ekit_socialshare_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"facebook\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"desktop\",\"tablet\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"sticky\":\"\",\"sticky_on\":[\"desktop\",\"tablet\",\"mobile\"],\"sticky_offset\":0,\"sticky_effects_offset\":0,\"sticky_parent\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6831d52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.9560000000000030695446184836328029632568359375,\"jet_sticky_column_sticky_enable\":\"\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"598f5939\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47f68c66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51294e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b366eee\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"7c070560\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"35ce358b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e61f744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_text_color\":\"\"},\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"button_hover_border_color\":\"#FF5722\",\"hover_animation\":\"float\",\"align\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f1d1ca4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"566b2621\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"287de27c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Causes\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7304cac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"377c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f5a9b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"71397be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ca5d1e2\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f4dd76f\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"5dd62543\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5c26ae81\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ad2c1f0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76674cf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7756bcfe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"403963f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d5c5731\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bffc66b\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"5f4f66c5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"90fc3f2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ee32fdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b2e3ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"303ae8cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6549779c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51804c68\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308aa82c\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"428f15a3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49752d02\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1736,316,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1737,316,'envato_tk_source_kit','6'),(1738,316,'envato_tk_source_index','4'),(1739,319,'_elementor_edit_mode','builder'),(1740,319,'_elementor_template_type','wp-page'),(1741,319,'_elementor_version','3.6.5'),(1742,319,'_elementor_pro_version','3.6.4'),(1743,320,'_elementor_edit_mode','builder'),(1744,320,'_elementor_template_type','wp-page'),(1745,320,'_elementor_version','3.6.5'),(1746,320,'_elementor_pro_version','3.6.4'),(1747,314,'_wp_page_template','default'),(1748,314,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1749,314,'_elementor_data','[{\"id\":\"1c4423a9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"c12de1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4de50d96\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"54acf172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"60f5ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes Details\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3ca9ebb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"4d47b9be\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\"},{\"text\":\"Causes Details\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27e47c12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"373ce512\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dd356f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74b4eb33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"71fd01cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e6d643d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c1e745\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4158ebcd\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"40e1e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50505894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"88077b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"600e5f5b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"336bc250\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"6eeea837\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4bb80554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69e9323\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"606221a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22222d50\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5dd1d2a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f16625a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b0da1a1\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c02cbff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.9560000000000030695446184836328029632568359375,\"jet_sticky_column_sticky_enable\":\"\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bced606\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48743ca4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ed593ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e215780\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"210a2e6d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"55c019a0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9899745\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_text_color\":\"\"},\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"button_hover_border_color\":\"#FF5722\",\"hover_animation\":\"float\",\"align\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cbb05e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"7007ae57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"174f486c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Causes\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59f1685b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"2b2da4f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"785d5c81\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1d41b22e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1681091c\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb8cdca\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"78c4a759\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b19afa2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"718be204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"729b6862\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a3b1531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"705c7f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ef5f76\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c54c5e1\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"69cf68c1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"66776152\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47a2df56\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"2be2f42d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"454efad6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"64eac296\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59831800\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49b3f4e9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"64c9dcb1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2320762c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1750,321,'_elementor_edit_mode','builder'),(1751,321,'_elementor_template_type','wp-page'),(1752,321,'_elementor_version','3.6.5'),(1753,321,'_elementor_pro_version','3.6.4'),(1754,321,'_wp_page_template','default'),(1755,321,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1756,321,'_elementor_data','[{\"id\":\"1c4423a9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"c12de1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4de50d96\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"54acf172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"60f5ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes Details\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3ca9ebb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"4d47b9be\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\"},{\"text\":\"Causes Details\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27e47c12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"373ce512\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dd356f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74b4eb33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"71fd01cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e6d643d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c1e745\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4158ebcd\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"40e1e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50505894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"88077b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"600e5f5b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"336bc250\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"6eeea837\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4bb80554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69e9323\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"606221a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22222d50\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5dd1d2a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f16625a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b0da1a1\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c02cbff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.9560000000000030695446184836328029632568359375,\"jet_sticky_column_sticky_enable\":\"\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bced606\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48743ca4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ed593ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e215780\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"210a2e6d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"55c019a0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9899745\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_text_color\":\"\"},\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"button_hover_border_color\":\"#FF5722\",\"hover_animation\":\"float\",\"align\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cbb05e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F0F0F0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"7007ae57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"174f486c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Causes\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59f1685b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"2b2da4f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"785d5c81\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"1d41b22e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1681091c\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb8cdca\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":78,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"78c4a759\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1b19afa2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"718be204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"729b6862\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a3b1531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"705c7f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ef5f76\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c54c5e1\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"69cf68c1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"66776152\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47a2df56\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"2be2f42d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.56000000000000227373675443232059478759765625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"43\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"454efad6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"64eac296\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.4380000000000023874235921539366245269775390625,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59831800\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bring Water To The Children\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49b3f4e9\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"\",\"ekit_progressbar_bar_height\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"ekit_progressbar_track_color_background\":\"classic\",\"ekit_progressbar_track_color_color\":\"#FCBC45\",\"ekit_progressbar_background_background\":\"classic\",\"ekit_progressbar_background_color\":\"#E3E3E3\",\"ekit_progressbar_title_typography_typography\":\"custom\",\"ekit_progressbar_percent_color\":\"#FFFFFF\",\"ekit_progressbar_percent_typography_typography\":\"custom\",\"ekit_progressbar_percent_typography_font_family\":\"Noto Serif\",\"ekit_progressbar_percent_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_progressbar_percent_typography_font_weight\":\"500\",\"ekit_progressbar_percent_typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"__globals__\":{\"ekit_progressbar_track_color_color\":\"\",\"ekit_progressbar_background_color\":\"\",\"ekit_progressbar_percent_color\":\"\",\"ekit_progressbar_percent_pin_bg\":\"\"},\"ekit_progressbar_style\":\"tooltip-style2\",\"ekit_progressbar_bar_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_progressbar_percent_pin_bg\":\"#252425\",\"ekit_progressbar_percentage\":81,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"64c9dcb1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$25,270}} Raised\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"2320762c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{$30,000}} Goal\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_right\",\"ekit_heading_title_color\":\"#6F747E\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Heebo\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"300\",\"ekit_heading_focused_title_color\":\"#252425\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Noto Serif\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_heading_focused_title_color\":\"\",\"ekit_heading_title_color\":\"\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1757,314,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1759,322,'_elementor_edit_mode','builder'),(1760,322,'_elementor_template_type','wp-page'),(1761,322,'_elementor_version','3.6.5'),(1762,322,'_elementor_pro_version','3.6.4'),(1763,322,'_wp_page_template','elementor_canvas'),(1764,322,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1765,322,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"148\",\"bottom\":\"40\",\"left\":\"200\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1766,322,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1767,322,'_elementor_css','a:6:{s:4:\"time\";i:1652793375;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:4;s:6:\"Roboto\";i:9;s:4:\"Muli\";i:10;s:6:\"Nunito\";i:13;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1768,323,'_elementor_edit_mode','builder'),(1769,323,'_elementor_template_type','wp-page'),(1770,323,'_elementor_version','3.6.5'),(1771,323,'_elementor_pro_version','3.6.4'),(1772,323,'_wp_page_template','elementor_canvas'),(1773,323,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1774,323,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"148\",\"bottom\":\"40\",\"left\":\"200\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1775,323,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1776,323,'_elementor_css','a:6:{s:4:\"time\";i:1652793375;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:4;s:6:\"Roboto\";i:9;s:4:\"Muli\";i:10;s:6:\"Nunito\";i:13;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1777,324,'_elementor_edit_mode','builder'),(1778,324,'_elementor_template_type','wp-page'),(1779,324,'_elementor_version','3.6.5'),(1780,324,'_elementor_pro_version','3.6.4'),(1781,324,'_wp_page_template','elementor_canvas'),(1782,324,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1783,324,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"148\",\"bottom\":\"40\",\"left\":\"200\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b12ef12\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1784,324,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1785,324,'_elementor_css','a:6:{s:4:\"time\";i:1652793375;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:4;s:6:\"Roboto\";i:9;s:4:\"Muli\";i:10;s:6:\"Nunito\";i:13;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:0:\"\";i:5;s:8:\"fa-solid\";i:9;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1786,325,'_elementor_edit_mode','builder'),(1787,325,'_elementor_template_type','wp-page'),(1788,325,'_elementor_version','3.6.5'),(1789,325,'_elementor_pro_version','3.6.4'),(1790,325,'_wp_page_template','default'),(1791,325,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1792,325,'_elementor_data','[{\"id\":\"1c4423a9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"c12de1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4de50d96\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"54acf172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"60f5ae8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Causes Details\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3ca9ebb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"4d47b9be\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\"},{\"text\":\"Causes Details\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27e47c12\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"373ce512\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dd356f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74b4eb33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"71fd01cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e6d643d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c1e745\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4158ebcd\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"40e1e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50505894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"88077b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"600e5f5b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"336bc250\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"6eeea837\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4bb80554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69e9323\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"606221a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22222d50\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5dd1d2a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f16625a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b0da1a1\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1793,325,'_elementor_page_assets','a:0:{}'),(1794,325,'_elementor_css','a:6:{s:4:\"time\";i:1652846461;s:5:\"fonts\";a:2:{i:0;s:5:\"Heebo\";i:2;s:10:\"Noto Serif\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:2;s:9:\"ekiticons\";i:8;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1795,326,'_elementor_edit_mode','builder'),(1796,326,'_elementor_template_type','wp-page'),(1797,326,'_elementor_version','3.6.5'),(1798,326,'_elementor_pro_version','3.6.4'),(1799,326,'_wp_page_template','elementor_canvas'),(1800,326,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1801,326,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"148\",\"bottom\":\"40\",\"left\":\"200\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b12ef12\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1802,326,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1803,327,'_elementor_edit_mode','builder'),(1804,327,'_elementor_template_type','wp-page'),(1805,327,'_elementor_version','3.6.5'),(1806,327,'_elementor_pro_version','3.6.4'),(1807,327,'_wp_page_template','elementor_canvas'),(1808,327,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1809,327,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12d4b0be\",\"elType\":\"section\",\"settings\":{\"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\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"66c032ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"32e96570\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b2a91d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"5aec0e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"title_color\":\"#252425\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"align\":\"center\",\"_margin\":{\"unit\":\"em\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c414729\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e9a3629\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc33574\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":3,\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"28d41c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"789b0c70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":20,\"spread\":1,\"color\":\"rgba(0,0,0,0.32)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"293b35c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#eeeeee\",\"margin\":{\"unit\":\"em\",\"top\":\"-9\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3116bb46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"148\",\"bottom\":\"40\",\"left\":\"200\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f3b5450\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-7\",\"isLinked\":false},\"text_color\":\"#6F747E\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e7eaf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"90\",\"height\":\"90\"},\"title_text\":\"The focus areas are:\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":11},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0},\"text_align\":\"left\",\"text_align_tablet\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":17},\"text_align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4dd7d59c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":16},\"icon_color\":\"rgba(223,98,54,0.8)\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"text_indent\":{\"unit\":\"px\",\"size\":12},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align_tablet\":\"left\",\"icon_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5a73763a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b12ef12\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"2\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1810,327,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1811,328,'_elementor_edit_mode','builder'),(1812,328,'_elementor_template_type','wp-page'),(1813,328,'_elementor_version','3.6.5'),(1814,328,'_elementor_pro_version','3.6.4'),(1815,328,'_wp_page_template','elementor_canvas'),(1816,328,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1817,328,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1818,328,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{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\";}}'),(1819,329,'_elementor_edit_mode','builder'),(1820,329,'_elementor_template_type','wp-page'),(1821,329,'_elementor_version','3.6.5'),(1822,329,'_elementor_pro_version','3.6.4'),(1823,329,'_wp_page_template','elementor_canvas'),(1824,329,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1825,329,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1826,329,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1827,330,'_elementor_edit_mode','builder'),(1828,330,'_elementor_template_type','wp-page'),(1829,330,'_elementor_version','3.6.5'),(1830,330,'_elementor_pro_version','3.6.4'),(1831,330,'_wp_page_template','elementor_canvas'),(1832,330,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1833,330,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1834,330,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1835,331,'_elementor_edit_mode','builder'),(1836,331,'_elementor_template_type','wp-page'),(1837,331,'_elementor_version','3.6.5'),(1838,331,'_elementor_pro_version','3.6.4'),(1839,331,'_wp_page_template','elementor_canvas'),(1840,331,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(1841,331,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1842,331,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1843,19,'_elementor_edit_mode','builder'),(1844,19,'_elementor_template_type','wp-page'),(1845,19,'_elementor_version','3.6.5'),(1846,19,'_elementor_pro_version','3.6.4'),(1856,333,'_wp_attached_file','2022/05/zz-teammember3.jpg'),(1857,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1474;s:4:\"file\";s:26:\"2022/05/zz-teammember3.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"zz-teammember3-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"zz-teammember3-695x1024.jpg\";s:5:\"width\";i:695;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"zz-teammember3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"zz-teammember3-768x1132.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1858,333,'_elementor_source_image_hash','3985a8d81beb6a6d08d1ab467f0e1f447884b10d'),(1859,334,'_wp_attached_file','2022/05/zz-teammember4.jpg'),(1860,334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1474;s:4:\"file\";s:26:\"2022/05/zz-teammember4.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"zz-teammember4-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"zz-teammember4-695x1024.jpg\";s:5:\"width\";i:695;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"zz-teammember4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"zz-teammember4-768x1132.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1861,334,'_elementor_source_image_hash','94aa4aa2ff786c21c0a8069576799ba7a395d471'),(1862,335,'_wp_attached_file','2022/05/zz-teammember2.jpg'),(1863,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1474;s:4:\"file\";s:26:\"2022/05/zz-teammember2.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"zz-teammember2-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"zz-teammember2-695x1024.jpg\";s:5:\"width\";i:695;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"zz-teammember2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"zz-teammember2-768x1132.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1864,335,'_elementor_source_image_hash','2c810947255d3cef3c74d18ae92dc925814f0067'),(1865,336,'_wp_attached_file','2022/05/zz-teammember.jpg'),(1866,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1474;s:4:\"file\";s:25:\"2022/05/zz-teammember.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"zz-teammember-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"zz-teammember-695x1024.jpg\";s:5:\"width\";i:695;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"zz-teammember-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"zz-teammember-768x1132.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1867,336,'_elementor_source_image_hash','6d4264d08fd10f1d7e5f0bfa733cd6804d441a34'),(1868,337,'_elementor_edit_mode','builder'),(1869,337,'_elementor_template_type','section'),(1870,337,'_elementor_version','3.6.5'),(1871,337,'_elementor_pro_version','3.6.4'),(1872,337,'_elementor_data','[{\"id\":\"59f0ac66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffffff\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"548c97da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53bf9e73\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":500},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28b8a7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16fd02ca\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"align\":\"right\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"1c733f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332999999999998408384271897375583648681640625,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"587f5a21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subheading\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#001c31\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"typography_font_weight\":\"700\",\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"blend_mode\":\"luminosity\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1c47e18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2cf1390a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"22c0a679\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial Grid\",\"title_color\":\"#001c31\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.29999999999999982236431605997495353221893310546875},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2},\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53768b57\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11cacecb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f42c4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fdd2338\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"<p>\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia. Sed tincidunt, eros in venenatis pulvinar, tortor ante posuere magna, in laoreet tellus ligula in metus. Ut tempor blandit eleifend. <\\/p>\\n\",\"testimonial_image\":{\"id\":\"333\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember3.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"5cf4f62b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"<p>\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.<\\/p>\",\"testimonial_image\":{\"id\":\"334\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember4.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"11d42d54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ad3b16e\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"<p>\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.<\\/p>\",\"testimonial_image\":{\"id\":\"335\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember2.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"40d4827a\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Nullam cursus lacinia erat. In consectetuer turpis ut velit. Nulla sit amet est. In ut quam vitae odio lacinia tincidunt. Phasellus dolor.\\n\\nEtiam vitae tortor. Phasellus ullamcorper ipsum rutrum nunc. Vivamus euismod mauris. Vivamus elementum semper nisi. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus.\\n\\nFusce commodo aliquam arcu. In consectetuer turpis ut velit. Vestibulum fringilla pede sit amet augue. Sed aliquam ultrices mauris. Vivamus elementum semper nisi.\",\"testimonial_image\":{\"id\":\"336\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1873,338,'_elementor_edit_mode','builder'),(1874,338,'_elementor_template_type','section'),(1875,338,'_elementor_version','3.6.5'),(1876,338,'_elementor_pro_version','3.6.4'),(1877,338,'_elementor_data','[{\"id\":\"59f0ac66\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffffff\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"548c97da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53bf9e73\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":500},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28b8a7a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16fd02ca\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"align\":\"right\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"1c733f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332999999999998408384271897375583648681640625,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"587f5a21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subheading\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#001c31\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"typography_font_weight\":\"700\",\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"blend_mode\":\"luminosity\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1c47e18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2cf1390a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"22c0a679\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial Grid\",\"title_color\":\"#001c31\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.29999999999999982236431605997495353221893310546875},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2},\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53768b57\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11cacecb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f42c4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fdd2338\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"<p>\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia. Sed tincidunt, eros in venenatis pulvinar, tortor ante posuere magna, in laoreet tellus ligula in metus. Ut tempor blandit eleifend. <\\/p>\\n\",\"testimonial_image\":{\"id\":\"333\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember3.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"5cf4f62b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"<p>\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.<\\/p>\",\"testimonial_image\":{\"id\":\"334\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember4.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"11d42d54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ad3b16e\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"<p>\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.<\\/p>\",\"testimonial_image\":{\"id\":\"335\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember2.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"40d4827a\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Nullam cursus lacinia erat. In consectetuer turpis ut velit. Nulla sit amet est. In ut quam vitae odio lacinia tincidunt. Phasellus dolor.\\n\\nEtiam vitae tortor. Phasellus ullamcorper ipsum rutrum nunc. Vivamus euismod mauris. Vivamus elementum semper nisi. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus.\\n\\nFusce commodo aliquam arcu. In consectetuer turpis ut velit. Vestibulum fringilla pede sit amet augue. Sed aliquam ultrices mauris. Vivamus elementum semper nisi.\",\"testimonial_image\":{\"id\":\"336\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/zz-teammember.jpg\"},\"testimonial_name\":\"Firstname Surname\",\"testimonial_job\":\"Designer\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"image_size\":{\"unit\":\"px\",\"size\":62},\"name_text_color\":\"#212121\",\"job_text_color\":\"#ff7f50\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Odor Mean Chey\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"content_typography_font_family\":\"Odor Mean Chey\",\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"size\":\"\"},\"image_border_color\":\"#000\",\"image_border_radius\":{\"unit\":\"px\",\"size\":\"\"},\"name_typography_font_weight\":\"600\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875},\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Odor Mean Chey\",\"job_typography_font_size\":{\"unit\":\"rem\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"job_typography_font_weight\":\"300\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1878,337,'_elementor_page_assets','a:0:{}'),(1879,337,'envato_elements_download_event','69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9-530d7568416db642867d55cf5a3a7afe'),(1880,340,'_wp_attached_file','2022/05/ruslan-bardash-351288-unsplash.jpg'),(1881,340,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1799;s:4:\"file\";s:42:\"2022/05/ruslan-bardash-351288-unsplash.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"ruslan-bardash-351288-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"ruslan-bardash-351288-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"ruslan-bardash-351288-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"ruslan-bardash-351288-unsplash-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"ruslan-bardash-351288-unsplash-1025x1536.jpg\";s:5:\"width\";i:1025;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1882,340,'_elementor_source_image_hash','fed3a14329a335241d80350572d5baf6a693a3ef'),(1883,341,'_elementor_edit_mode','builder'),(1884,341,'_elementor_template_type','section'),(1885,341,'_elementor_version','3.6.5'),(1886,341,'_elementor_pro_version','3.6.4'),(1887,341,'_elementor_data','[{\"id\":\"5c4d311e\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"280\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/linebgoverlay.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dddeb52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ff82571\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"image\",\"image\":{\"url\":\"\",\"id\":\"\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":\"340\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ruslan-bardash-351288-unsplash.jpg\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Show More\",\"height\":{\"unit\":\"px\",\"size\":500},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_background_color\":\"#1896fe\",\"button_border_color\":\"#1896fe\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#1896fe\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"background_a_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_a_slideshow_gallery\":[],\"background_b_image\":{\"url\":\"\",\"id\":\"\"},\"background_b_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_b_slideshow_gallery\":[],\"button_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_slideshow_gallery\":[],\"button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"339d2b1c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a1a1202\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32a2bc01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tevero liberavisse <br>comprehensam nec.\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59a86d72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48ea56f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get started now\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#1896fe\",\"button_background_hover_color\":\"#166cff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"500a4ea2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f81722c\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"image\",\"image\":{\"url\":\"\",\"id\":\"\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":\"285\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aideal-hwa-600523-unsplash.jpg\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Show More\",\"height\":{\"unit\":\"px\",\"size\":500},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_background_color\":\"#1896fe\",\"button_border_color\":\"#1896fe\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_overlay_a\":\"rgba(255,255,255,0.14)\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"background_b_background\":\"classic\",\"background_b_color\":\"#1896fe\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"button_hover_text_color\":\"#ffffff\",\"button_hover_background_color\":\"#0672dd\",\"button_hover_border_color\":\"#1583ea\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"background_a_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_a_slideshow_gallery\":[],\"background_b_image\":{\"url\":\"\",\"id\":\"\"},\"background_b_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_b_slideshow_gallery\":[],\"button_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_slideshow_gallery\":[],\"button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"4070354f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"abb0573\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c0699c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tevero liberavisse <br>comprehensam nec.\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49ead337\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8c9f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get started now\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#1896fe\",\"button_background_hover_color\":\"#166cff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1888,342,'_elementor_edit_mode','builder'),(1889,342,'_elementor_template_type','section'),(1890,342,'_elementor_version','3.6.5'),(1891,342,'_elementor_pro_version','3.6.4'),(1892,342,'_elementor_data','[{\"id\":\"5c4d311e\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"280\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/linebgoverlay.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dddeb52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ff82571\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"image\",\"image\":{\"url\":\"\",\"id\":\"\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":\"340\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ruslan-bardash-351288-unsplash.jpg\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Show More\",\"height\":{\"unit\":\"px\",\"size\":500},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_background_color\":\"#1896fe\",\"button_border_color\":\"#1896fe\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#1896fe\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"background_a_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_a_slideshow_gallery\":[],\"background_b_image\":{\"url\":\"\",\"id\":\"\"},\"background_b_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_b_slideshow_gallery\":[],\"button_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_slideshow_gallery\":[],\"button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"339d2b1c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a1a1202\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32a2bc01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tevero liberavisse <br>comprehensam nec.\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59a86d72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48ea56f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get started now\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#1896fe\",\"button_background_hover_color\":\"#166cff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"500a4ea2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f81722c\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"image\",\"image\":{\"url\":\"\",\"id\":\"\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":\"285\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aideal-hwa-600523-unsplash.jpg\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Show More\",\"height\":{\"unit\":\"px\",\"size\":500},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_background_color\":\"#1896fe\",\"button_border_color\":\"#1896fe\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_overlay_a\":\"rgba(255,255,255,0.14)\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"background_b_background\":\"classic\",\"background_b_color\":\"#1896fe\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"button_hover_text_color\":\"#ffffff\",\"button_hover_background_color\":\"#0672dd\",\"button_hover_border_color\":\"#1583ea\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"background_a_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_a_slideshow_gallery\":[],\"background_b_image\":{\"url\":\"\",\"id\":\"\"},\"background_b_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_b_slideshow_gallery\":[],\"button_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_slideshow_gallery\":[],\"button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"4070354f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"px\",\"top\":\"-90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"abb0573\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c0699c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tevero liberavisse <br>comprehensam nec.\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49ead337\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8c9f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get started now\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#1896fe\",\"button_background_hover_color\":\"#166cff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1893,341,'_elementor_page_assets','a:0:{}'),(1894,341,'envato_elements_download_event','136-3-fc37602abad173a9d9d95d89bbe6bb80-189d073db3d9fcea40fd2444c5f1e428'),(1904,344,'_elementor_edit_mode','builder'),(1905,344,'_elementor_template_type','wp-page'),(1906,344,'_elementor_version','3.6.5'),(1907,344,'_elementor_pro_version','3.6.4'),(1908,345,'_elementor_edit_mode','builder'),(1909,345,'_elementor_template_type','wp-page'),(1910,345,'_elementor_version','3.6.5'),(1911,345,'_elementor_pro_version','3.6.4'),(1912,19,'_wp_page_template','elementor_canvas'),(1913,19,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1914,19,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a7f783\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec8b5ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1915,346,'_elementor_edit_mode','builder'),(1916,346,'_elementor_template_type','wp-page'),(1917,346,'_elementor_version','3.6.5'),(1918,346,'_elementor_pro_version','3.6.4'),(1919,346,'_wp_page_template','elementor_canvas'),(1920,346,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1921,346,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b674e77\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e2be2b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1922,19,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1923,347,'_elementor_edit_mode','builder'),(1924,347,'_elementor_template_type','page'),(1925,347,'_elementor_version','3.6.5'),(1926,347,'_elementor_pro_version','3.6.4'),(1927,348,'_elementor_edit_mode','builder'),(1928,348,'_elementor_template_type','page'),(1929,348,'_elementor_version','3.6.5'),(1930,348,'_elementor_pro_version','3.6.4'),(1931,347,'_wp_page_template','elementor_canvas'),(1932,347,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1933,347,'_elementor_data','[{\"id\":\"36ffe4a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"69a0ceed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7bb29d8a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"606f6b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"70871d11\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"34c23ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6705c56\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12bd4a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"725df522\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38c94ee1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cd689b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"439e7561\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d1b6f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54450a02\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"2576904e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ccabd29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e9692b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"481f0820\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18499e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"217f0d90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"808ccc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"36b985e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"605e31ad\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cb49707\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"21bfe944\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"4416287f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3720e98d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"381cdb9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bc7ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6fb694\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"11bc09de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"1f63cbe6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"7e01e5fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29ba1875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"6e8eb5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121e5125\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d035549\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1feae6b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"77092bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"9778a7a\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"6c9e288e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"558c9cf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"174f1e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8aced4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60469c62\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d773087\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"11f13664\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"7354269b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5538ab02\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2ea58f31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"486af1b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"545fe1f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"465948af\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79682a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"ba1e0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"119f2ad7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67430404\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e1ad9f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c2523c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"7891a741\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0cdd9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23166c38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20ad8d47\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"b419f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c4f8797\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"763f0924\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51ee5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1ee7436a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e4ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1934,349,'_elementor_edit_mode','builder'),(1935,349,'_elementor_template_type','page'),(1936,349,'_elementor_version','3.6.5'),(1937,349,'_elementor_pro_version','3.6.4'),(1938,349,'_wp_page_template','elementor_canvas'),(1939,349,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1940,349,'_elementor_data','[{\"id\":\"36ffe4a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"69a0ceed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7bb29d8a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"606f6b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"70871d11\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"34c23ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6705c56\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12bd4a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"725df522\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38c94ee1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cd689b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"439e7561\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"70d1b6f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54450a02\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"2576904e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ccabd29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e9692b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"481f0820\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18499e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"217f0d90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"808ccc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"36b985e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"605e31ad\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cb49707\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"21bfe944\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"4416287f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3720e98d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"381cdb9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a7bc7ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6fb694\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"11bc09de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"1f63cbe6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"7e01e5fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29ba1875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"6e8eb5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"121e5125\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d035549\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1feae6b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"77092bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"9778a7a\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"6c9e288e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"558c9cf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"174f1e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8aced4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60469c62\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d773087\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"11f13664\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"7354269b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5538ab02\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2ea58f31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"486af1b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"545fe1f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"465948af\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79682a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"ba1e0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"119f2ad7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67430404\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e1ad9f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c2523c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"7891a741\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0cdd9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23166c38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20ad8d47\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"b419f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c4f8797\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"763f0924\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51ee5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1ee7436a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e4ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(1941,347,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1942,15,'_elementor_edit_mode','builder'),(1943,15,'_elementor_template_type','wp-page'),(1944,15,'_elementor_version','3.6.5'),(1945,15,'_elementor_pro_version','3.6.4'),(1954,351,'_wp_attached_file','2022/05/aubergine-e1611195670454.jpg'),(1955,351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:36:\"2022/05/aubergine-e1611195670454.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"aubergine-e1611195670454-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"aubergine-e1611195670454-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"aubergine-e1611195670454-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"aubergine-e1611195670454-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"aubergine-e1611195670454-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"aubergine-e1611195670454-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1956,351,'_elementor_source_image_hash','390a0e4ab82abc73470c0a202969ec66da3b9aa3'),(1957,352,'_wp_attached_file','2022/05/Image-9RVG87W.jpg'),(1958,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:25:\"2022/05/Image-9RVG87W.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-9RVG87W-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Image-9RVG87W-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-9RVG87W-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-9RVG87W-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Image-9RVG87W-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Image-9RVG87W-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1959,352,'_elementor_source_image_hash','b1264e39c3933959469b608dcb385f15652e6a92'),(1960,353,'_wp_attached_file','2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg'),(1961,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:61:\"2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"portrait-of-volunteer-group-posing-e1611195950376-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"portrait-of-volunteer-group-posing-e1611195950376-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"portrait-of-volunteer-group-posing-e1611195950376-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"portrait-of-volunteer-group-posing-e1611195950376-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:63:\"portrait-of-volunteer-group-posing-e1611195950376-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:62:\"portrait-of-volunteer-group-posing-e1611195950376-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1962,353,'_elementor_source_image_hash','9bdb80f4f9c4e24605aa13d89d8330092922ca16'),(1963,354,'_wp_attached_file','2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg'),(1964,354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:120:\"2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:120:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:121:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:120:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:120:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:122:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:121:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1965,354,'_elementor_source_image_hash','3c44c08932b50d10ee7c82a7dc234c80e79c8113'),(1966,355,'_wp_attached_file','2022/05/Image-7GJ5W9M.jpg'),(1967,355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1007;s:4:\"file\";s:25:\"2022/05/Image-7GJ5W9M.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-7GJ5W9M-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-7GJ5W9M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-7GJ5W9M-768x755.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1968,355,'_elementor_source_image_hash','97975e49d5cf755f61c09bd5df6da3af92a6e633'),(1969,356,'_wp_attached_file','2022/05/Image-VZKUZZD.jpg'),(1970,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1007;s:4:\"file\";s:25:\"2022/05/Image-VZKUZZD.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-VZKUZZD-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-VZKUZZD-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-VZKUZZD-768x755.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1971,356,'_elementor_source_image_hash','ac57bbf19d58db71bf701e323b9ea4ecce6e7829'),(1972,357,'_wp_attached_file','2022/05/Image-5S79FQC.jpg'),(1973,357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1007;s:4:\"file\";s:25:\"2022/05/Image-5S79FQC.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-5S79FQC-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-5S79FQC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-5S79FQC-768x755.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1974,357,'_elementor_source_image_hash','79aef2ae2e63989a77423a21dbf7830f17bac351'),(1975,358,'_elementor_edit_mode','builder'),(1976,358,'_elementor_template_type','page'),(1977,358,'_elementor_version','3.6.5'),(1978,358,'_elementor_pro_version','3.6.4'),(1979,359,'_elementor_edit_mode','builder'),(1980,359,'_elementor_template_type','page'),(1981,359,'_elementor_version','3.6.5'),(1982,359,'_elementor_pro_version','3.6.4'),(1983,358,'_wp_page_template','elementor_header_footer'),(1984,358,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1985,358,'_elementor_data','[{\"id\":\"32f4fa7a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61db0ce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ba7e845\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24d75a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6505b9b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us \",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"698df7a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20f6a1c2\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec1f658\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32e78375\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29e8cca6\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"662bf01a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"758833ec\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"2a880d84\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"84b3106\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7335f9fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39237c93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e0119\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"45636cf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52c33bd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f0841d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5944700\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"489fd9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"554d60dc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66158130\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30f9fefb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"385b961e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make World Happier\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37b1767e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d9a00bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36813e61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19c0a494\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"4ac6317f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27205cd9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6936085f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"437bdfa9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"70f33486\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3831e5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69884f6c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"layout\":\"full_width\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34b5f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"86adba9\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":\"351\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine-e1611195670454.jpg\"},{\"id\":\"352\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-9RVG87W.jpg\"},{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":\"353\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing-e1611195950376.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"354\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\"}],\"thumbnail_size\":\"full\",\"gallery_columns\":\"3\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"gallery_display_caption\":\"none\",\"__globals__\":{\"image_border_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1212091b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ca6eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"738fc89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Volunteers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df2276d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Them\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59e78b5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c195c19\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee06062\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d93ae85\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-7GJ5W9M.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"ekit_team_image_background_background\":\"classic\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"6ded363f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Armaan Cullen\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"1de3546b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162c257f\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-VZKUZZD.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"2637b13f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Esha Wheatley\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"2ff9a44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dcb7633\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-5S79FQC.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"48026fee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Natalie Whyte\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60ae33f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Volunteer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1986,360,'_elementor_edit_mode','builder'),(1987,360,'_elementor_template_type','page'),(1988,360,'_elementor_version','3.6.5'),(1989,360,'_elementor_pro_version','3.6.4'),(1990,360,'_wp_page_template','elementor_header_footer'),(1991,360,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1992,360,'_elementor_data','[{\"id\":\"32f4fa7a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61db0ce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ba7e845\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24d75a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6505b9b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us \",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"698df7a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20f6a1c2\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec1f658\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32e78375\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29e8cca6\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"662bf01a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"758833ec\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"2a880d84\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"84b3106\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7335f9fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39237c93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e0119\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"45636cf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52c33bd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f0841d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5944700\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"489fd9a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"554d60dc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66158130\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30f9fefb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"385b961e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make World Happier\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37b1767e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d9a00bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36813e61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19c0a494\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"4ac6317f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27205cd9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6936085f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"437bdfa9\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"70f33486\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3831e5f3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69884f6c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"layout\":\"full_width\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34b5f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"86adba9\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":\"351\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine-e1611195670454.jpg\"},{\"id\":\"352\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-9RVG87W.jpg\"},{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":\"353\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing-e1611195950376.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"354\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\"}],\"thumbnail_size\":\"full\",\"gallery_columns\":\"3\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"gallery_display_caption\":\"none\",\"__globals__\":{\"image_border_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1212091b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ca6eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"738fc89d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Volunteers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df2276d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Them\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59e78b5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c195c19\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee06062\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d93ae85\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-7GJ5W9M.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"ekit_team_image_background_background\":\"classic\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"6ded363f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Armaan Cullen\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"1de3546b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162c257f\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-VZKUZZD.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"2637b13f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Esha Wheatley\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"2ff9a44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dcb7633\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-5S79FQC.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"48026fee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Natalie Whyte\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60ae33f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Volunteer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_family\":\"Noto Serif\",\"button_text_color\":\"#252425\",\"background_color\":\"#FCBC45\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1993,358,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1994,358,'envato_tk_source_kit','6'),(1995,358,'envato_tk_source_index','2'),(1996,361,'_wp_attached_file','2022/05/2.png'),(1997,361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:589;s:4:\"file\";s:13:\"2022/05/2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x224.png\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x573.png\";s:5:\"width\";i:768;s:6:\"height\";i:573;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1998,362,'_wp_attached_file','2022/05/1.png'),(1999,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1190;s:6:\"height\";i:588;s:4:\"file\";s:13:\"2022/05/1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-300x148.png\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-1024x506.png\";s:5:\"width\";i:1024;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x379.png\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2000,363,'_elementor_edit_mode','builder'),(2001,363,'_elementor_template_type','wp-page'),(2002,363,'_elementor_version','3.6.5'),(2003,363,'_elementor_pro_version','3.6.4'),(2004,364,'_elementor_edit_mode','builder'),(2005,364,'_elementor_template_type','wp-page'),(2006,364,'_elementor_version','3.6.5'),(2007,364,'_elementor_pro_version','3.6.4'),(2008,15,'_wp_page_template','elementor_canvas'),(2009,15,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2010,15,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2011,365,'_elementor_edit_mode','builder'),(2012,365,'_elementor_template_type','wp-page'),(2013,365,'_elementor_version','3.6.5'),(2014,365,'_elementor_pro_version','3.6.4'),(2015,365,'_wp_page_template','elementor_canvas'),(2016,365,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2017,365,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"389d7517\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"144709c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53b7fd6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53cd9cdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"627e375a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4023dc4a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbb40aa\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2018,15,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2019,314,'_elementor_css','a:6:{s:4:\"time\";i:1652853000;s:5:\"fonts\";a:2:{i:0;s:5:\"Heebo\";i:2;s:10:\"Noto Serif\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:2;s:9:\"ekiticons\";i:8;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2031,367,'_wp_attached_file','2022/05/pexels-photo-209663.jpeg'),(2032,367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:766;s:4:\"file\";s:32:\"2022/05/pexels-photo-209663.jpeg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"pexels-photo-209663-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"pexels-photo-209663-1024x613.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-209663-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"pexels-photo-209663-768x460.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-209663-1200x718.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2033,367,'_elementor_source_image_hash','f2352bfef67a2e141b92b30bba297eb9635fe241'),(2034,368,'_elementor_edit_mode','builder'),(2035,368,'_elementor_template_type','section'),(2036,368,'_elementor_version','3.6.5'),(2037,368,'_elementor_pro_version','3.6.4'),(2038,368,'_elementor_data','[{\"id\":\"28faf2e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"\"},\"column_position\":\"bottom\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_width\":{\"unit\":\"px\",\"size\":1100},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"367\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001c31\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82999999999999996003197111349436454474925994873046875},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":101},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":71},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":89},\"css_filters_hue\":{\"unit\":\"px\",\"size\":335},\"background_color\":\"#001c31\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ccec66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.1820000000000021600499167107045650482177734375,\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10cc3cbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay Updated\",\"header_size\":\"h3\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"right\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#ff7f50\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Odor Mean Chey\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"288d0cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join The Buzz\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"align\":\"right\",\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5307b0aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vivamus consectetuer hendrerit lacus. Vivamus quis mi. Nulla porta dolor. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Praesent blandit laoreet.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_font_family\":\"Odor Mean Chey\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.100000000000000088817841970012523233890533447265625},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37df526b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"right\",\"_animation\":\"fadeInUp\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"38f3336d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.8179999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"12\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d202557\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":500},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46365e0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4701825a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"align\":\"right\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"4cc896d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332999999999998408384271897375583648681640625,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"319cf5c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#00354f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"700\",\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"blend_mode\":\"luminosity\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"83c78a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34d76037\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b5cdde1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"align\":\"center\",\"align_mobile\":\"justify\",\"typography_font_family\":\"Odor Mean Chey\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ac9152f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"100\",\"field_value\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_icon\":\"fa fa-send\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"email_to\":\"\",\"email_subject\":\"New message from \\\"Kit 66\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"Kit 66\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"Kit 66\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"Kit 66\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"button_background_color\":\"#ff7f50\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\",\"button_hover_color\":\"#ffffff\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"label_color\":\"#001c31\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_typography_font_family\":\"Odor Mean Chey\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(2039,369,'_elementor_edit_mode','builder'),(2040,369,'_elementor_template_type','section'),(2041,369,'_elementor_version','3.6.5'),(2042,369,'_elementor_pro_version','3.6.4'),(2043,369,'_elementor_data','[{\"id\":\"28faf2e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"\"},\"column_position\":\"bottom\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_width\":{\"unit\":\"px\",\"size\":1100},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"367\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001c31\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82999999999999996003197111349436454474925994873046875},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":101},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":71},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":89},\"css_filters_hue\":{\"unit\":\"px\",\"size\":335},\"background_color\":\"#001c31\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ccec66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.1820000000000021600499167107045650482177734375,\"border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10cc3cbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay Updated\",\"header_size\":\"h3\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.399999999999999911182158029987476766109466552734375},\"align\":\"right\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#ff7f50\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Odor Mean Chey\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"288d0cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join The Buzz\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"align\":\"right\",\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5307b0aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vivamus consectetuer hendrerit lacus. Vivamus quis mi. Nulla porta dolor. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Praesent blandit laoreet.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_font_family\":\"Odor Mean Chey\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.100000000000000088817841970012523233890533447265625},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37df526b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"right\",\"_animation\":\"fadeInUp\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"38f3336d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.8179999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"12\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d202557\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":500},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46365e0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4701825a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"align\":\"right\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"4cc896d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332999999999998408384271897375583648681640625,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"319cf5c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#00354f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"700\",\"typography_font_family\":\"Odor Mean Chey\",\"align_mobile\":\"center\",\"blend_mode\":\"luminosity\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"83c78a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_mobile\":10,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34d76037\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ff7f50\",\"gap\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":20},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b5cdde1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"align\":\"center\",\"align_mobile\":\"justify\",\"typography_font_family\":\"Odor Mean Chey\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ac9152f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"100\",\"field_value\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_icon\":\"fa fa-send\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"email_to\":\"\",\"email_subject\":\"New message from \\\"Kit 66\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"Kit 66\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"Kit 66\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"Kit 66\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"button_background_color\":\"#ff7f50\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\",\"button_hover_color\":\"#ffffff\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"label_color\":\"#001c31\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_typography_font_family\":\"Odor Mean Chey\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(2044,368,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2045,368,'envato_elements_download_event','69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9-2c3686864efc7277205de9d87007a001'),(2046,370,'_elementor_edit_mode','builder'),(2047,370,'_elementor_template_type','wp-page'),(2048,370,'_elementor_version','3.6.5'),(2049,370,'_elementor_pro_version','3.6.4'),(2050,370,'_wp_page_template','elementor_canvas'),(2051,370,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2052,370,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2053,370,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2054,371,'_elementor_edit_mode','builder'),(2055,371,'_elementor_template_type','wp-page'),(2056,371,'_elementor_version','3.6.5'),(2057,371,'_elementor_pro_version','3.6.4'),(2058,371,'_wp_page_template','elementor_canvas'),(2059,371,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2060,371,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c91ba04\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2061,371,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2062,372,'_elementor_edit_mode','builder'),(2063,372,'_elementor_template_type','wp-page'),(2064,372,'_elementor_version','3.6.5'),(2065,372,'_elementor_pro_version','3.6.4'),(2066,372,'_wp_page_template','elementor_canvas'),(2067,372,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2068,372,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a180384\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"\"},\"column_position\":\"bottom\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_width\":{\"unit\":\"px\",\"size\":1100},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"367\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001c31\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82999999999999996003197111349436454474925994873046875},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":101},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":71},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":89},\"css_filters_hue\":{\"unit\":\"px\",\"size\":335},\"background_color\":\"#001c31\"},\"elements\":[{\"id\":\"7f214694\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"12\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e13529\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"md\",\"button_icon\":\"fa fa-send\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"email_to\":\"\",\"email_subject\":\"New message from \\\"Kit 66\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"Kit 66\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"Kit 66\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"Kit 66\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"button_background_color\":\"#ff7f50\",\"button_typography_typography\":\"custom\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"label_color\":\"#001c31\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(2069,372,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2070,373,'_elementor_edit_mode','builder'),(2071,373,'_elementor_template_type','widget'),(2072,373,'_wp_page_template','default'),(2073,373,'_elementor_version','3.6.5'),(2074,373,'_elementor_pro_version','3.6.4'),(2075,373,'_elementor_data','[{\"id\":\"250\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"button_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"form\"}]'),(2076,373,'_elementor_page_assets','a:0:{}'),(2077,373,'_elementor_template_widget_type','form'),(2078,373,'_elementor_global_widget_included_posts','a:3:{i:11;b:1;i:343;b:1;i:17;b:1;}'),(2079,374,'_elementor_edit_mode','builder'),(2080,374,'_elementor_template_type','wp-page'),(2081,374,'_elementor_version','3.6.5'),(2082,374,'_elementor_pro_version','3.6.4'),(2083,374,'_wp_page_template','elementor_canvas'),(2084,374,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2085,374,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a180384\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"\"},\"column_position\":\"bottom\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_width\":{\"unit\":\"px\",\"size\":1100},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"367\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001c31\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82999999999999996003197111349436454474925994873046875},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":101},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":71},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":89},\"css_filters_hue\":{\"unit\":\"px\",\"size\":335},\"background_color\":\"#001c31\"},\"elements\":[{\"id\":\"7f214694\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"12\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e13529\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"md\",\"button_icon\":\"fa fa-send\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"email_to\":\"\",\"email_subject\":\"New message from \\\"Kit 66\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"Kit 66\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"Kit 66\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"Kit 66\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"button_background_color\":\"#ff7f50\",\"button_typography_typography\":\"custom\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"label_color\":\"#001c31\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(2086,374,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2087,375,'_elementor_edit_mode','builder'),(2088,375,'_elementor_template_type','wp-page'),(2089,375,'_elementor_version','3.6.5'),(2090,375,'_elementor_pro_version','3.6.4'),(2091,375,'_wp_page_template','elementor_canvas'),(2092,375,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2093,375,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a180384\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"\"},\"column_position\":\"bottom\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_width\":{\"unit\":\"px\",\"size\":1100},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"367\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001c31\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82999999999999996003197111349436454474925994873046875},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":101},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":71},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":89},\"css_filters_hue\":{\"unit\":\"px\",\"size\":335},\"background_color\":\"#001c31\"},\"elements\":[{\"id\":\"7f214694\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"12\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e13529\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"md\",\"button_icon\":\"fa fa-send\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"email_to\":\"\",\"email_subject\":\"New message from \\\"Kit 66\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"\",\"email_from_name\":\"Kit 66\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"Kit 66\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"\",\"email_from_name_2\":\"Kit 66\",\"email_reply_to_2\":\"\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"button_background_color\":\"#ff7f50\",\"button_typography_typography\":\"custom\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"label_color\":\"#001c31\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(2094,375,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2095,376,'_elementor_edit_mode','builder'),(2096,376,'_elementor_template_type','wp-page'),(2097,376,'_elementor_version','3.6.5'),(2098,376,'_elementor_pro_version','3.6.4'),(2099,376,'_wp_page_template','elementor_canvas'),(2100,376,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2101,376,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"button_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2102,376,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2103,377,'_elementor_edit_mode','builder'),(2104,377,'_elementor_template_type','widget'),(2105,377,'_wp_page_template','default'),(2106,377,'_elementor_version','3.6.5'),(2107,377,'_elementor_pro_version','3.6.4'),(2108,377,'_elementor_data','[{\"id\":\"250\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"form\"}]'),(2109,377,'_elementor_page_assets','a:0:{}'),(2110,377,'_elementor_template_widget_type','form'),(2111,377,'_elementor_global_widget_included_posts','a:3:{i:11;b:1;i:343;b:1;i:17;b:1;}'),(2123,379,'_elementor_edit_mode','builder'),(2124,379,'_elementor_template_type','wp-page'),(2125,379,'_elementor_version','3.6.5'),(2126,379,'_elementor_pro_version','3.6.4'),(2127,379,'_wp_page_template','elementor_canvas'),(2128,379,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2129,379,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b674e77\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e2be2b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2130,379,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2131,380,'_elementor_edit_mode','builder'),(2132,380,'_elementor_template_type','wp-page'),(2133,380,'_elementor_version','3.6.5'),(2134,380,'_elementor_pro_version','3.6.4'),(2135,380,'_wp_page_template','elementor_canvas'),(2136,380,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2137,380,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b674e77\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e2be2b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2138,380,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2139,381,'_elementor_edit_mode','builder'),(2140,381,'_elementor_template_type','wp-page'),(2141,381,'_elementor_version','3.6.5'),(2142,381,'_elementor_pro_version','3.6.4'),(2143,381,'_wp_page_template','elementor_canvas'),(2144,381,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2145,381,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b674e77\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec8b5ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2146,381,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2148,382,'_elementor_edit_mode','builder'),(2149,382,'_elementor_template_type','wp-page'),(2150,382,'_elementor_version','3.6.5'),(2151,382,'_elementor_pro_version','3.6.4'),(2152,382,'_wp_page_template','elementor_canvas'),(2153,382,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2154,382,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b674e77\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec8b5ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2155,382,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2156,383,'_elementor_edit_mode','builder'),(2157,383,'_elementor_template_type','wp-page'),(2158,383,'_elementor_version','3.6.5'),(2159,383,'_elementor_pro_version','3.6.4'),(2160,383,'_wp_page_template','elementor_canvas'),(2161,383,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (2162,383,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b674e77\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec8b5ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2163,383,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2164,384,'_elementor_edit_mode','builder'),(2165,384,'_elementor_template_type','wp-page'),(2166,384,'_elementor_version','3.6.5'),(2167,384,'_elementor_pro_version','3.6.4'),(2168,384,'_wp_page_template','elementor_canvas'),(2169,384,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2170,384,'_elementor_data','[{\"id\":\"7c44baf3\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"510eb838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5546113f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7c2cfb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"30878ae\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2eb2aada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"70bcfe45\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18f365f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2210409\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ab971f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679c034d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"4c1ed6c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"622d62d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a7f783\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"e067d86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cb6a230\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc92a2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":38,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"fb326da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82ec1d8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"d1aeb35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"47678c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Success Stories\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8787722\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d99ac0b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22307849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"399b3fed\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"857f53a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2339eb00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"348cc44d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda: Captaining change\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2289bdfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti\\u2019s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e99b8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa454ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"b3d0b92\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"88cb4d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"33be6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2462673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e68663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9645677\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601bf8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d34bbb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"a6e5be1\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"a53c4fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9b0f6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"7c21168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"165913e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e938750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"754be53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e23add6\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"Read  More\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"997ee41\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4403ae7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5913df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Artee Munda: Changing minds with art\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be9aef4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed19dc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ed6421\",\"button_background_hover_color\":\"#D64701\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#ffffff\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":5,\"vertical\":-5,\"blur\":60,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"50\",\"bottom\":\"16\",\"left\":\"50\",\"isLinked\":false},\"align_tablet\":\"center\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6587fa8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"255d19c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2bf8661d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46243d57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496d10ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18d34c26\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cfc0a3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6c2713c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a3f8b85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba03e3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec8b5ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5e0e9db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44f67d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ac385\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c336b3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d7dbae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bc877\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2171,384,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2172,385,'_elementor_edit_mode','builder'),(2173,385,'_elementor_template_type','widget'),(2174,385,'_wp_page_template','default'),(2175,385,'_elementor_version','3.6.5'),(2176,385,'_elementor_pro_version','3.6.4'),(2177,385,'_elementor_data','[{\"id\":\"297\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}]'),(2178,385,'_elementor_page_assets','a:0:{}'),(2179,385,'_elementor_template_widget_type','nav-menu'),(2180,385,'_elementor_global_widget_included_posts','a:7:{i:300;b:1;i:11;b:1;i:17;b:1;i:310;b:1;i:343;b:1;i:366;b:1;i:19;b:1;}'),(2181,386,'_elementor_edit_mode','builder'),(2182,386,'_elementor_template_type','wp-page'),(2183,386,'_elementor_version','3.6.5'),(2184,386,'_elementor_pro_version','3.6.4'),(2185,386,'_wp_page_template','elementor_canvas'),(2186,386,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2187,386,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"389d7517\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"144709c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53b7fd6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53cd9cdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"627e375a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4023dc4a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbb40aa\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2188,386,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2189,386,'_elementor_css','a:6:{s:4:\"time\";i:1652854284;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:6:\"Nunito\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2190,387,'_elementor_edit_mode','builder'),(2191,387,'_elementor_template_type','wp-page'),(2192,387,'_elementor_version','3.6.5'),(2193,387,'_elementor_pro_version','3.6.4'),(2194,387,'_wp_page_template','elementor_canvas'),(2195,387,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2196,387,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"389d7517\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"144709c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53b7fd6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53cd9cdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"627e375a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4023dc4a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbb40aa\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2197,387,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2198,387,'_elementor_css','a:6:{s:4:\"time\";i:1652854284;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:6:\"Nunito\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2199,388,'_elementor_edit_mode','builder'),(2200,388,'_elementor_template_type','wp-page'),(2201,388,'_elementor_version','3.6.5'),(2202,388,'_elementor_pro_version','3.6.4'),(2203,388,'_wp_page_template','elementor_canvas'),(2204,388,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2205,388,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"389d7517\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53b7fd6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53cd9cdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"627e375a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbb40aa\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2206,388,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2207,388,'_elementor_css','a:6:{s:4:\"time\";i:1652854284;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:6:\"Nunito\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2208,389,'_elementor_edit_mode','builder'),(2209,389,'_elementor_template_type','widget'),(2210,390,'_elementor_edit_mode','builder'),(2211,390,'_elementor_template_type','widget'),(2212,389,'_wp_page_template','default'),(2213,389,'_elementor_version','3.6.5'),(2214,389,'_elementor_pro_version','3.6.4'),(2215,389,'_elementor_data','[{\"id\":\"296a0aae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}]'),(2216,391,'_elementor_edit_mode','builder'),(2217,391,'_elementor_template_type','widget'),(2218,391,'_wp_page_template','default'),(2219,391,'_elementor_version','3.6.5'),(2220,391,'_elementor_pro_version','3.6.4'),(2221,391,'_elementor_data','[{\"id\":\"296a0aae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}]'),(2222,389,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(2223,389,'_elementor_template_widget_type','button'),(2224,392,'_elementor_edit_mode','builder'),(2225,392,'_elementor_template_type','widget'),(2226,393,'_elementor_edit_mode','builder'),(2227,393,'_elementor_template_type','widget'),(2228,392,'_wp_page_template','default'),(2229,392,'_elementor_version','3.6.5'),(2230,392,'_elementor_pro_version','3.6.4'),(2231,392,'_elementor_data','[{\"id\":\"61605df7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}]'),(2232,394,'_elementor_edit_mode','builder'),(2233,394,'_elementor_template_type','widget'),(2234,394,'_wp_page_template','default'),(2235,394,'_elementor_version','3.6.5'),(2236,394,'_elementor_pro_version','3.6.4'),(2237,394,'_elementor_data','[{\"id\":\"61605df7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}]'),(2238,392,'_elementor_page_assets','a:0:{}'),(2239,392,'_elementor_template_widget_type','social-icons'),(2248,389,'_elementor_global_widget_included_posts','a:21:{i:395;b:1;i:15;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(2249,392,'_elementor_global_widget_included_posts','a:21:{i:395;b:1;i:15;b:1;i:399;b:1;i:405;b:1;i:418;b:1;i:411;b:1;i:445;b:1;i:413;b:1;i:463;b:1;i:415;b:1;i:467;b:1;i:474;b:1;i:570;b:1;i:555;b:1;i:557;b:1;i:585;b:1;i:559;b:1;i:589;b:1;i:561;b:1;i:563;b:1;i:610;b:1;}'),(2250,396,'_elementor_edit_mode','builder'),(2251,396,'_elementor_template_type','wp-page'),(2252,396,'_elementor_version','3.6.5'),(2253,396,'_elementor_pro_version','3.6.4'),(2254,396,'_wp_page_template','elementor_canvas'),(2255,396,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2256,396,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"389d7517\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53b7fd6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53cd9cdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"627e375a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbb40aa\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2257,396,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2258,397,'_elementor_edit_mode','builder'),(2259,397,'_elementor_template_type','wp-page'),(2260,397,'_elementor_version','3.6.5'),(2261,397,'_elementor_pro_version','3.6.4'),(2262,397,'_wp_page_template','elementor_canvas'),(2263,397,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2264,397,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"389d7517\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53b7fd6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53cd9cdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"627e375a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbb40aa\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2265,397,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2266,398,'_elementor_edit_mode','builder'),(2267,398,'_elementor_template_type','wp-page'),(2268,398,'_elementor_version','3.6.5'),(2269,398,'_elementor_pro_version','3.6.4'),(2270,398,'_wp_page_template','elementor_canvas'),(2271,398,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2272,398,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2273,398,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2274,399,'_elementor_edit_mode','builder'),(2275,399,'_elementor_template_type','page'),(2276,399,'_elementor_version','3.6.5'),(2277,399,'_elementor_pro_version','3.6.4'),(2278,400,'_elementor_edit_mode','builder'),(2279,400,'_elementor_template_type','page'),(2280,400,'_elementor_version','3.6.5'),(2281,400,'_elementor_pro_version','3.6.4'),(2282,399,'_wp_page_template','elementor_canvas'),(2283,399,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2284,399,'_elementor_data','[{\"id\":\"94d592c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"6898e703\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"1836f961\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"28ec3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f7d6621\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d6ce27f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"36d0d8db\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2b8a51b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2184bd8a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cad2fdc\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e61d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"7009aecd\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"13157d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c9a4d25\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"56b85956\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"35753377\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d286e0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7716674c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"615cdd1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"3b43e67e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2b5c452e\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3e0772\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1376ce74\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"25137cab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46cde251\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d849df4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7424ced1\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"6116bce2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ebaa28e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eadf369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3c285d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c93117f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e0078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"7897793a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"17091b56\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"6b43fec0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ce650ca\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"75abcd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"45350d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"201e3a2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e116a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c9c2ca5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6b9686e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"432ceb53\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"336cb17c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"770c14ea\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"52fc9681\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58d34e56\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"11e53f01\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a51bbe3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524e3118\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"8bd9224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1d42cb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c1bc962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a19237d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"1c575895\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"41276eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b2749ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1cc976\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f0ee7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"188223a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6efdf4ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"3dde112e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe2adb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4db1cfd9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"730ec66e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bc9d7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3044ffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37bfc038\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"1e7211fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e36f33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a3db89d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f3afed\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2bc11540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37cde390\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2285,401,'_elementor_edit_mode','builder'),(2286,401,'_elementor_template_type','page'),(2287,401,'_elementor_version','3.6.5'),(2288,401,'_elementor_pro_version','3.6.4'),(2289,401,'_wp_page_template','elementor_canvas'),(2290,401,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2291,401,'_elementor_data','[{\"id\":\"94d592c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"6898e703\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"1836f961\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"28ec3af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f7d6621\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d6ce27f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"36d0d8db\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2b8a51b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2184bd8a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cad2fdc\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e61d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"7009aecd\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"13157d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c9a4d25\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"56b85956\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"35753377\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d286e0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7716674c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"615cdd1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"3b43e67e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2b5c452e\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3e0772\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1376ce74\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"25137cab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46cde251\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d849df4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7424ced1\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"6116bce2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ebaa28e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7eadf369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3c285d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c93117f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e0078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"7897793a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"17091b56\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"6b43fec0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ce650ca\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"75abcd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"45350d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"201e3a2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e116a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c9c2ca5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6b9686e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"432ceb53\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"336cb17c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"770c14ea\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"52fc9681\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58d34e56\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"11e53f01\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a51bbe3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"524e3118\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"8bd9224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1d42cb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c1bc962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a19237d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"1c575895\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"41276eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b2749ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1cc976\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f0ee7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"188223a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6efdf4ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"3dde112e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe2adb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4db1cfd9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"730ec66e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bc9d7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3044ffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37bfc038\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"1e7211fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36e36f33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a3db89d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f3afed\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2bc11540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37cde390\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2292,399,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2293,402,'_elementor_edit_mode','builder'),(2294,402,'_elementor_template_type','wp-page'),(2295,402,'_elementor_version','3.6.5'),(2296,402,'_wp_page_template','elementor_canvas'),(2297,402,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2298,402,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f239fac\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(2299,402,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(2300,402,'_elementor_pro_version','3.6.4'),(2301,403,'_elementor_edit_mode','builder'),(2302,403,'_elementor_template_type','wp-page'),(2303,403,'_elementor_version','3.6.5'),(2304,403,'_wp_page_template','elementor_canvas'),(2305,403,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2306,403,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f239fac\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"xs\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":20},\"row_gap\":{\"unit\":\"px\",\"size\":9},\"field_border_color\":\"rgba(255,255,255,0.17)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_css_classes\":\"envato-kit-66-subscription-form\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Nunito\",\"button_typography_font_family\":\"Nunito\",\"button_typography_font_weight\":\"700\",\"field_background_color\":\"#FFFFFFD9\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"label_typography_typography\":\"custom\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(2307,403,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(2308,403,'_elementor_pro_version','3.6.4'),(2309,404,'_elementor_edit_mode','builder'),(2310,404,'_elementor_template_type','wp-page'),(2311,404,'_elementor_version','3.6.5'),(2312,404,'_wp_page_template','elementor_canvas'),(2313,404,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2314,404,'_elementor_data','[{\"id\":\"852268\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"1a563b33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6094eb11\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a083a4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f76f629\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"698acdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"550207f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0979d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a975b25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2683c26b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4321fa6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"d8531ff\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":238}],\"isInner\":false},{\"id\":\"70d84bdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f239fac\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"52c24d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"01dd712\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":235}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e153d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"274f0596\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.99199999999999732835931354202330112457275390625,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cfa7d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPREADING THE LIGHT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6.0999999999999996447286321199499070644378662109375},\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":10},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":10},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":-1.100000000000000088817841970012523233890533447265625},\"size\":\"small\",\"typography_font_style\":\"normal\",\"typography_word_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd32e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our community to empower girls\",\"title_color\":\"#FBF9F5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"5f1ad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.3100000000000004973799150320701301097869873046875,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"b121632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d68a71\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c245001\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"97093e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2f9a238\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"\",\"url\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":34,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":369,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c496b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"24cc1c1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44ab6e12\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dbabac\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are In A Mission To <br>  Help The Helpness\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7f61c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a5648be\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43a97587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32d657a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.5679999999999978399500832892954349517822265625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f2de8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Fund Raised in crores\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":161,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-3.png\"},\"ekit_funfact_icon_primary_color\":\"#000000\",\"ekit_funfact_description_color\":\"#241C24\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_title_size\":\"h2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"00\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":5},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"4d9831cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.3370000000000032969182939268648624420166015625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be8f2ed\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"1227b4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1bc3018a\",\"elType\":\"widget\",\"settings\":{\"title\":\"What we doing\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9a9030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our programs\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6cecf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ef5b907\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68828f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a1f37e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3b2e78c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75060270\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bfc65ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"402149ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5daa3ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e2e904\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65d82903\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cc68d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567ed3f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"427ed621\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e82be55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d33b8d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6282e8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ce307ef\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Healthy Food\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e73e989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"876b4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f7615b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"182694d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c953b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89faceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb3f271\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1718eaa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1343879\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#FFFFFF00\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc0e8dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e43806a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7987d9ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shocking Statistics of Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d93e58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7af9c084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"633e5bf0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8584ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"17ae2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.63000000000000255795384873636066913604736328125},\"elements\":[],\"isInner\":false},{\"id\":\"dac82a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.900999999999999801048033987171947956085205078125,\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"37824ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Give a hand to \\nMake Better World\'\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amita\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__dynamic__\":[],\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cce6de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.75099999999999766941982670687139034271240234375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0c254d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-29\",\"right\":0,\"bottom\":\"14\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d1b3e75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"7365c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e46eb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"c6f1c9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"78b6089\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ee019f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"-22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29bf3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.132999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"1451866\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5bf7eec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.3840000000000003410605131648480892181396484375},\"elements\":[{\"id\":\"df31d32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-Family-light\",\"library\":\"jkiticon\"},\"title_text\":\"27\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur \",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":-50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"36ca7b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":64.81499999999999772626324556767940521240234375,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54e11ac\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FBF9F5\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.0899999999999999966693309261245303787291049957275390625,\"sizes\":[]}},\"elements\":[{\"id\":\"456a4c8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79dd7629\",\"elType\":\"widget\",\"settings\":{\"title\":\"From the Blog\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ca2b544\",\"elType\":\"widget\",\"settings\":{\"title\":\"News & Articles\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#252425\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4297f14b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3594a89e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66de1de8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f2b347\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae16093\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs  Medicine\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b866623\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Majene, Sulawesi Barat\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46827423\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114b8612\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"67fd6050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43442a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"372caca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disaster Relief To Africa\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565bef20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Southern, South Africa\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"10.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5b04c84b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna\",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43bd377f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"align_mobile\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"auto\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14c2766f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb332c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"11f8f365\",\"elType\":\"widget\",\"settings\":{\"title\":\" People That Needs Food\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b3bd85\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bima, NTB\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"99ffc1b\"},{\"text\":\"09.00 AM - 17.00 PM\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"ca77b37\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_color\":\"#6F747E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f9861d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna \",\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16006fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Details\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"background_color\":\"#FFFFFF00\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"_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},\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e0e1815\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"-0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"41701608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5df9617e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"286aaf9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c5f2c1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28595e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become a voulunteer\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16c3d77d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b163bc1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27aa4366\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f66cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44abb869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start changing lives\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"175f6aa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f1ac6a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"check now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_text_decoration\":\"none\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"64b1d8df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0B54B6\",\"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\":5,\"blur\":25,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6f8ab605\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"58db19ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Donations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"title_color\":\"#252425\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55d194a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63c16570\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.5270000000000010231815394945442676544189453125},\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_decoration\":\"none\",\"button_type\":\"success\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f56bb0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67f88e6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"18381140\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe6c691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":244}],\"isInner\":false},{\"id\":\"4a5efb02\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6365f66e\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6dedf86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":247}],\"isInner\":false},{\"id\":\"1046eb88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2fa7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc3c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e6174b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"7a270c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4d6af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93bfe01\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":253}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e38bcf5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"layout\":\"full_width\",\"column_position\":\"stretch\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c7d27cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bdf6bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":256}],\"isInner\":false}],\"isInner\":false}]'),(2315,404,'_elementor_page_assets','a:1:{s:6:\"styles\";a:51:{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\";}}'),(2316,404,'_elementor_pro_version','3.6.4'),(2318,11,'_elementor_css','a:6:{s:4:\"time\";i:1652871760;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:7;s:5:\"Heebo\";i:20;s:5:\"Amita\";i:30;s:6:\"Roboto\";i:35;s:4:\"Muli\";i:36;s:14:\"Odor Mean Chey\";i:38;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:6;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"d8531ff\";i:1;s:7:\"d8531ff\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2319,19,'_elementor_css','a:6:{s:4:\"time\";i:1652871776;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:7:\"Archivo\";i:8;s:5:\"Heebo\";i:18;s:6:\"Roboto\";i:23;s:4:\"Muli\";i:24;s:14:\"Odor Mean Chey\";i:26;s:4:\"Jost\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"4c1ed6c1\";i:1;s:8:\"4c1ed6c1\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2330,406,'_elementor_edit_mode','builder'),(2331,406,'_elementor_template_type','section'),(2332,406,'_elementor_version','3.6.5'),(2333,406,'_elementor_pro_version','3.6.4'),(2334,406,'_elementor_data','[{\"id\":\"10155439\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"column_position\":\"bottom\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#282828\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375},\"content_width\":{\"unit\":\"px\",\"size\":1300},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":144},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":398},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43d74aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"50\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"498ce4d6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"889b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec9cea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subheading\",\"header_size\":\"h3\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\",\"align\":\"center\",\"_css_classes\":\"envato-kit-138-bracket\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"799a1ca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Focus Boxes\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.79999999999999982236431605997495353221893310546875},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3.5},\"typography_font_family\":\"Nunito Sans\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.5},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9156e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772c22df\",\"elType\":\"widget\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6e7ff63f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579d44e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(255,171,0,0.62)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c24fe42\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"primary_color\":\"#ffab00\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bcd0d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feature Name\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#212121\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b320d8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c55883d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"text_color\":\"#757575\",\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c3b0657\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_weight\":\"400\",\"background_color\":\"rgba(255,171,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#ffab00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ffab00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"button_text_color\":\"#ffab00\",\"button_hover_border_color\":\"#ffab00\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"63334a5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(255,171,0,0.62)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bc4cb32\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"primary_color\":\"#ffab00\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plane\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"78887e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feature Name\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#212121\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c5a86ab\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"44f6cf41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"text_color\":\"#757575\",\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"735f2558\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_weight\":\"400\",\"background_color\":\"rgba(255,171,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#ffab00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ffab00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"button_text_color\":\"#ffab00\",\"button_hover_border_color\":\"#ffab00\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1e66b711\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(255,171,0,0.62)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38e07a52\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"primary_color\":\"#ffab00\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-wifi\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"32d3b4e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feature Name\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#212121\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a10a6a7\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3021e2a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"text_color\":\"#757575\",\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d459afe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_weight\":\"400\",\"background_color\":\"rgba(255,171,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#ffab00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ffab00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"button_text_color\":\"#ffab00\",\"button_hover_border_color\":\"#ffab00\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c2b4844\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2335,407,'_elementor_edit_mode','builder'),(2336,407,'_elementor_template_type','section'),(2337,407,'_elementor_version','3.6.5'),(2338,407,'_elementor_pro_version','3.6.4'),(2339,407,'_elementor_data','[{\"id\":\"10155439\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"column_position\":\"bottom\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#282828\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375},\"content_width\":{\"unit\":\"px\",\"size\":1300},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":144},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":398},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43d74aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"50\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"498ce4d6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"889b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec9cea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subheading\",\"header_size\":\"h3\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1},\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\",\"align\":\"center\",\"_css_classes\":\"envato-kit-138-bracket\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"799a1ca3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Focus Boxes\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.79999999999999982236431605997495353221893310546875},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3.5},\"typography_font_family\":\"Nunito Sans\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.5},\"typography_font_weight\":\"800\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9156e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"772c22df\",\"elType\":\"widget\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6e7ff63f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579d44e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(255,171,0,0.62)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c24fe42\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"primary_color\":\"#ffab00\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bcd0d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feature Name\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#212121\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b320d8c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c55883d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"text_color\":\"#757575\",\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c3b0657\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_weight\":\"400\",\"background_color\":\"rgba(255,171,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#ffab00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ffab00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"button_text_color\":\"#ffab00\",\"button_hover_border_color\":\"#ffab00\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"63334a5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(255,171,0,0.62)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bc4cb32\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"primary_color\":\"#ffab00\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plane\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"78887e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feature Name\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#212121\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c5a86ab\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"44f6cf41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"text_color\":\"#757575\",\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"735f2558\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_weight\":\"400\",\"background_color\":\"rgba(255,171,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#ffab00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ffab00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"button_text_color\":\"#ffab00\",\"button_hover_border_color\":\"#ffab00\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1e66b711\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(255,171,0,0.62)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"id\":\"184\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/lee-miller-47629-unsplash.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38e07a52\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"primary_color\":\"#ffab00\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-wifi\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"32d3b4e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feature Name\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#212121\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5},\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a10a6a7\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"color\":\"#ffab00\",\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3021e2a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"text_color\":\"#757575\",\"typography_font_family\":\"Nunito\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d459afe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito\",\"typography_font_weight\":\"400\",\"background_color\":\"rgba(255,171,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#ffab00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ffab00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625},\"button_text_color\":\"#ffab00\",\"button_hover_border_color\":\"#ffab00\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c2b4844\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2340,406,'_elementor_page_assets','a:0:{}'),(2341,406,'envato_elements_download_event','141-3-1d55f1e76be9fb1a8d9de88accbe962f-de84b8b098db0b35bd8c9a0b8f761f55'),(2342,408,'_elementor_edit_mode','builder'),(2343,408,'_elementor_template_type','wp-page'),(2344,408,'_elementor_version','3.6.5'),(2345,408,'_elementor_pro_version','3.6.4'),(2346,408,'_wp_page_template','elementor_canvas'),(2347,408,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2348,408,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2349,408,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2350,409,'_elementor_edit_mode','builder'),(2351,409,'_elementor_template_type','wp-page'),(2352,409,'_elementor_version','3.6.5'),(2353,409,'_elementor_pro_version','3.6.4'),(2354,409,'_wp_page_template','elementor_canvas'),(2355,409,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (2356,409,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b937e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"134e2858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4952860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/1.png\",\"id\":362,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2e170c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"43eebb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2357,409,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2358,410,'_elementor_edit_mode','builder'),(2359,410,'_elementor_template_type','wp-page'),(2360,410,'_elementor_version','3.6.5'),(2361,410,'_elementor_pro_version','3.6.4'),(2362,410,'_wp_page_template','elementor_canvas'),(2363,410,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2364,410,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2365,410,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2367,411,'_edit_lock','1652877595:1'),(2368,413,'_edit_lock','1652878466:1'),(2369,415,'_edit_lock','1652884077:1'),(2370,417,'_edit_lock','1652874684:1'),(2371,411,'_elementor_edit_mode','builder'),(2372,411,'_elementor_template_type','wp-page'),(2373,411,'_elementor_version','3.6.5'),(2374,411,'_elementor_pro_version','3.6.4'),(2383,419,'_wp_attached_file','2022/05/fabian-kozdon-271993-unsplash.jpg'),(2384,419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:41:\"2022/05/fabian-kozdon-271993-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"fabian-kozdon-271993-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"fabian-kozdon-271993-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"fabian-kozdon-271993-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"fabian-kozdon-271993-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"fabian-kozdon-271993-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"fabian-kozdon-271993-unsplash-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2385,419,'_elementor_source_image_hash','2ffaa6b92c9e77e472b250686cbac2539fc31296'),(2386,420,'_wp_attached_file','2022/05/filip-zrnzevic-349229-unsplash2.jpg'),(2387,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:4:\"file\";s:43:\"2022/05/filip-zrnzevic-349229-unsplash2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"filip-zrnzevic-349229-unsplash2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"filip-zrnzevic-349229-unsplash2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"filip-zrnzevic-349229-unsplash2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"filip-zrnzevic-349229-unsplash2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"filip-zrnzevic-349229-unsplash2-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2388,420,'_elementor_source_image_hash','ee4d8f3603566c528ecbb2e240790f6c2ca0b234'),(2389,421,'_wp_attached_file','2022/05/book.png'),(2390,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:16:\"2022/05/book.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2391,421,'_elementor_source_image_hash','d386c072d04dbe49f2a51b893749f542230592a7'),(2392,422,'_wp_attached_file','2022/05/jeremy-bishop-483982-unsplash.jpg'),(2393,422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:2880;s:4:\"file\";s:41:\"2022/05/jeremy-bishop-483982-unsplash.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"jeremy-bishop-483982-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"jeremy-bishop-483982-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"jeremy-bishop-483982-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"jeremy-bishop-483982-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"jeremy-bishop-483982-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"jeremy-bishop-483982-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"jeremy-bishop-483982-unsplash-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2394,422,'_elementor_source_image_hash','6163737008cbcf2faa9cf6d1df8be86daf0d5fc1'),(2395,423,'_wp_attached_file','2022/05/adrian-226109-unsplash.jpg'),(2396,423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:1320;s:4:\"file\";s:34:\"2022/05/adrian-226109-unsplash.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"adrian-226109-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"adrian-226109-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"adrian-226109-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"adrian-226109-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"adrian-226109-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"adrian-226109-unsplash-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2397,423,'_elementor_source_image_hash','d775630506bde0fd9f1756110f6b95d4d7c0c909'),(2398,424,'_wp_attached_file','2022/05/compass.png'),(2399,424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:19:\"2022/05/compass.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2400,424,'_elementor_source_image_hash','efaefba3bdf675921516cd7850fcd02220fed3ea'),(2401,425,'_elementor_edit_mode','builder'),(2402,425,'_elementor_template_type','section'),(2403,425,'_elementor_version','3.6.5'),(2404,425,'_elementor_pro_version','3.6.4'),(2405,425,'_elementor_data','[{\"id\":\"d15a5f5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18fc4358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cf1acc0\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"318ac8ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17a2c8f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.100000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"header_size\":\"h4\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":24},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5c7bdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2},\"color\":\"#54595f\",\"width\":{\"unit\":\"px\",\"size\":30},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6eea5d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sub heading\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"_margin\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_family\":\"Jost\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"58780885\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b588cee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"419\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/fabian-kozdon-271993-unsplash.jpg\"},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-2\",\"left\":\"4\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78da6bf1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Heading\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"554c8ba9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"58f93c70\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f620cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3dad0f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"420\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/filip-zrnzevic-349229-unsplash2.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-14,\"vertical\":-14,\"blur\":48,\"spread\":0,\"color\":\"rgba(0,0,0,0.15)\"},\"margin\":{\"unit\":\"%\",\"top\":\"-2\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"060\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index\":2,\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.93000000000000004884981308350688777863979339599609375},\"overlay_blend_mode\":\"screen\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26f84b17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"421\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/book.png\"},\"title_text\":\"Heading\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#242424\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1506ab3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39620231\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"422\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/jeremy-bishop-483982-unsplash.jpg\"},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"margin\":{\"unit\":\"%\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"-2\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f0ed75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Heading\\u200b\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"719bd0b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"68d3cebc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"custom_height_inner\":{\"unit\":\"vh\",\"size\":19,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b972fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"48fc4f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"423\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/adrian-226109-unsplash.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-14,\"vertical\":-14,\"blur\":48,\"spread\":0,\"color\":\"rgba(0,0,0,0.15)\"},\"margin\":{\"unit\":\"%\",\"top\":\"-2\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"060\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index\":2,\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.93000000000000004884981308350688777863979339599609375},\"overlay_blend_mode\":\"screen\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16d59a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"424\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/compass.png\"},\"title_text\":\"Heading\\u200b\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#242424\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2406,426,'_elementor_edit_mode','builder'),(2407,426,'_elementor_template_type','section'),(2408,426,'_elementor_version','3.6.5'),(2409,426,'_elementor_pro_version','3.6.4'),(2410,426,'_elementor_data','[{\"id\":\"d15a5f5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18fc4358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cf1acc0\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"318ac8ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17a2c8f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.100000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"header_size\":\"h4\",\"typography_font_family\":\"Jost\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":24},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5c7bdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":2},\"color\":\"#54595f\",\"width\":{\"unit\":\"px\",\"size\":30},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6eea5d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sub heading\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"_margin\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_family\":\"Jost\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"58780885\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b588cee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"419\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/fabian-kozdon-271993-unsplash.jpg\"},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-2\",\"left\":\"4\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78da6bf1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Heading\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"554c8ba9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"58f93c70\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f620cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"3dad0f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"420\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/filip-zrnzevic-349229-unsplash2.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-14,\"vertical\":-14,\"blur\":48,\"spread\":0,\"color\":\"rgba(0,0,0,0.15)\"},\"margin\":{\"unit\":\"%\",\"top\":\"-2\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"060\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index\":2,\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.93000000000000004884981308350688777863979339599609375},\"overlay_blend_mode\":\"screen\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26f84b17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"421\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/book.png\"},\"title_text\":\"Heading\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#242424\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1506ab3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39620231\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"422\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/jeremy-bishop-483982-unsplash.jpg\"},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"margin\":{\"unit\":\"%\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"-2\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f0ed75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Heading\\u200b\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"719bd0b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"68d3cebc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"custom_height_inner\":{\"unit\":\"vh\",\"size\":19,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b972fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"48fc4f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"423\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/adrian-226109-unsplash.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":-14,\"vertical\":-14,\"blur\":48,\"spread\":0,\"color\":\"rgba(0,0,0,0.15)\"},\"margin\":{\"unit\":\"%\",\"top\":\"-2\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"060\",\"bottom\":\"15\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index\":2,\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.93000000000000004884981308350688777863979339599609375},\"overlay_blend_mode\":\"screen\",\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16d59a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"424\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/compass.png\"},\"title_text\":\"Heading\\u200b\",\"description_text\":\"Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"hover_animation\":\"grow\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"description_color\":\"#242424\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":25},\"image_size_mobile\":{\"unit\":\"%\",\"size\":50},\"title_typography_font_family\":\"Jost\",\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_family\":\"Jost\",\"description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":16},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2411,425,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(2412,425,'envato_elements_download_event','105-3-0fb64e69c49a8e10692d28840c54ef95-4426eb83647cc19026204146e00380c9'),(2413,427,'_wp_attached_file','2022/05/pexels-photo-819807.jpeg'),(2414,427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1197;s:4:\"file\";s:32:\"2022/05/pexels-photo-819807.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"pexels-photo-819807-300x187.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"pexels-photo-819807-1024x638.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-819807-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"pexels-photo-819807-768x479.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"pexels-photo-819807-1536x958.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-819807-1200x748.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:748;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2415,427,'_elementor_source_image_hash','c001d4833f7de46ea52645cc529e79fab5e896cc'),(2416,428,'_wp_attached_file','2022/05/trail-1152864-unsplash.jpg'),(2417,428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1250;s:4:\"file\";s:34:\"2022/05/trail-1152864-unsplash.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"trail-1152864-unsplash-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"trail-1152864-unsplash-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"trail-1152864-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"trail-1152864-unsplash-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2418,428,'_elementor_source_image_hash','82b02c68f88241a1879af94fdc6799e4a832dc34'),(2419,429,'_elementor_edit_mode','builder'),(2420,429,'_elementor_template_type','section'),(2421,429,'_elementor_version','3.6.5'),(2422,429,'_elementor_pro_version','3.6.4'),(2423,429,'_elementor_data','[{\"id\":\"196946a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b557735\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#2a75ff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d747462\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"427\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-819807.jpeg\"},\"opacity_hover\":{\"unit\":\"px\",\"size\":0.460000000000000019984014443252817727625370025634765625},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":4},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":178},\"hover_animation\":\"grow\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#ffffff\",\"_background_color_b\":\"#2a75ff\",\"_background_image\":{\"id\":\"428\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/trail-1152864-unsplash.jpg\"},\"_background_position\":\"center center\",\"_background_attachment\":\"scroll\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_hover_color\":\"#ffffff\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11cbdc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c043593\",\"elType\":\"widget\",\"settings\":{\"title\":\"Worrying Does Not Empty Tomorrow Of Its Troubles, It Empties Today Of Its Strength.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":300,\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e91d841\",\"elType\":\"widget\",\"settings\":{\"color\":\"rgba(0,0,0,0.4)\",\"width\":{\"unit\":\"%\",\"size\":26},\"gap\":{\"unit\":\"px\",\"size\":23},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-55\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e475b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2424,430,'_elementor_edit_mode','builder'),(2425,430,'_elementor_template_type','section'),(2426,430,'_elementor_version','3.6.5'),(2427,430,'_elementor_pro_version','3.6.4'),(2428,430,'_elementor_data','[{\"id\":\"196946a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"wider\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b557735\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#2a75ff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d747462\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"427\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-819807.jpeg\"},\"opacity_hover\":{\"unit\":\"px\",\"size\":0.460000000000000019984014443252817727625370025634765625},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":5.9000000000000003552713678800500929355621337890625},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":4},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":178},\"hover_animation\":\"grow\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#ffffff\",\"_background_color_b\":\"#2a75ff\",\"_background_image\":{\"id\":\"428\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/trail-1152864-unsplash.jpg\"},\"_background_position\":\"center center\",\"_background_attachment\":\"scroll\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_hover_color\":\"#ffffff\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11cbdc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c043593\",\"elType\":\"widget\",\"settings\":{\"title\":\"Worrying Does Not Empty Tomorrow Of Its Troubles, It Empties Today Of Its Strength.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"_animation_delay\":300,\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e91d841\",\"elType\":\"widget\",\"settings\":{\"color\":\"rgba(0,0,0,0.4)\",\"width\":{\"unit\":\"%\",\"size\":26},\"gap\":{\"unit\":\"px\",\"size\":23},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-55\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_delay\":400,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e475b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2429,429,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2430,429,'envato_elements_download_event','143-3-7969bb877702491bc5ca272e536ada9d-12138c4dd1366216558ffec031263fe7'),(2431,431,'_wp_attached_file','2022/05/spacex-101796-unsplash.jpg'),(2432,431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:34:\"2022/05/spacex-101796-unsplash.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"spacex-101796-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"spacex-101796-unsplash-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"spacex-101796-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"spacex-101796-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"spacex-101796-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"spacex-101796-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"spacex-101796-unsplash-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:36:\"spacex-101796-unsplash-1980x1319.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:1319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2433,431,'_elementor_source_image_hash','7f7cd7eedf10f61f72d2ef966a48552ee9ef87ab'),(2434,432,'_wp_attached_file','2022/05/guille-pozzi-484826-unsplash.jpg'),(2435,432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2022/05/guille-pozzi-484826-unsplash.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"guille-pozzi-484826-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"guille-pozzi-484826-unsplash-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"guille-pozzi-484826-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"guille-pozzi-484826-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"guille-pozzi-484826-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"guille-pozzi-484826-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"guille-pozzi-484826-unsplash-1200x1801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1801;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2436,432,'_elementor_source_image_hash','5d45b1ee8abbdc25e983feed2a8a0d1a5eb08a33'),(2437,433,'_elementor_edit_mode','builder'),(2438,433,'_elementor_template_type','section'),(2439,433,'_elementor_version','3.6.5'),(2440,433,'_elementor_pro_version','3.6.4'),(2441,433,'_elementor_data','[{\"id\":\"7bbd79c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d62086e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60b42a7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sub heading\",\"align\":\"left\",\"title_color\":\"#38495e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79b02a01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main\",\"align\":\"left\",\"title_color\":\"#0c0c0c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5295d744\",\"elType\":\"widget\",\"settings\":{\"title\":\"Heading\",\"align\":\"left\",\"title_color\":\"#0c0c0c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":82},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-3\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":54},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":399,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"597f16f4\",\"elType\":\"widget\",\"settings\":{\"_animation\":\"fadeInDown\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a98aa76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Maecenas vestibulum mollis diam. Ut a nisl id ante tempus hendrerit. Fusce risus nisl, viverra et, tempor et, pretium in, sapien.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"266e1a0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"386943fa\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=tP4QuS2LUsk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6koazf\",\"autoplay\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"showinfo\":\"\",\"yt_privacy\":\"yes\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"id\":\"432\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/guille-pozzi-484826-unsplash.jpg\"},\"lightbox\":\"yes\",\"lightbox_color\":\"#000000\",\"lightbox_ui_color\":\"#c4b583\",\"lightbox_ui_color_hover\":\"#c49b13\",\"lightbox_video_width\":{\"unit\":\"%\",\"size\":90},\"lightbox_content_animation\":\"fadeIn\",\"lazy_load\":\"yes\",\"image_overlay_size\":\"custom\",\"image_overlay_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":74},\"play_icon_text_shadow_text_shadow_type\":\"yes\",\"hosted_url\":{\"url\":\"\",\"id\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(2442,434,'_elementor_edit_mode','builder'),(2443,434,'_elementor_template_type','section'),(2444,434,'_elementor_version','3.6.5'),(2445,434,'_elementor_pro_version','3.6.4'),(2446,434,'_elementor_data','[{\"id\":\"7bbd79c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d62086e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60b42a7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sub heading\",\"align\":\"left\",\"title_color\":\"#38495e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79b02a01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main\",\"align\":\"left\",\"title_color\":\"#0c0c0c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5295d744\",\"elType\":\"widget\",\"settings\":{\"title\":\"Heading\",\"align\":\"left\",\"title_color\":\"#0c0c0c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":82},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-3\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":54},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":399,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"597f16f4\",\"elType\":\"widget\",\"settings\":{\"_animation\":\"fadeInDown\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a98aa76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Maecenas vestibulum mollis diam. Ut a nisl id ante tempus hendrerit. Fusce risus nisl, viverra et, tempor et, pretium in, sapien.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"266e1a0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"386943fa\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=tP4QuS2LUsk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6koazf\",\"autoplay\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"showinfo\":\"\",\"yt_privacy\":\"yes\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"id\":\"432\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/guille-pozzi-484826-unsplash.jpg\"},\"lightbox\":\"yes\",\"lightbox_color\":\"#000000\",\"lightbox_ui_color\":\"#c4b583\",\"lightbox_ui_color_hover\":\"#c49b13\",\"lightbox_video_width\":{\"unit\":\"%\",\"size\":90},\"lightbox_content_animation\":\"fadeIn\",\"lazy_load\":\"yes\",\"image_overlay_size\":\"custom\",\"image_overlay_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":74},\"play_icon_text_shadow_text_shadow_type\":\"yes\",\"hosted_url\":{\"url\":\"\",\"id\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(2447,433,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2448,433,'envato_elements_download_event','33-3-f2d4515681d0cdeb2a000d0405e47669-f6791ecdca8610f06982616b267274a6'),(2449,436,'_elementor_edit_mode','builder'),(2450,436,'_elementor_template_type','wp-page'),(2451,436,'_elementor_version','3.6.5'),(2452,436,'_elementor_pro_version','3.6.4'),(2453,437,'_elementor_edit_mode','builder'),(2454,437,'_elementor_template_type','wp-page'),(2455,437,'_elementor_version','3.6.5'),(2456,437,'_elementor_pro_version','3.6.4'),(2457,411,'_wp_page_template','elementor_canvas'),(2458,411,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2459,411,'_elementor_data','[{\"id\":\"4ea1bbba\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"60c8a0d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"81c3112\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"32c9930f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"25deee88\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"478dfca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2c3b7fa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3402dfb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e5bfdc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85e3ea5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"76449498\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"72275cda\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"3bcaf4b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f8f27d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"d48aeb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fbbf2f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef015d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3958df57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3eab094\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7dbacb7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"46205ad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7668e4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0a813f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4202c682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"67368230\",\"elType\":\"widget\",\"settings\":{\"title\":\"A multi-stakeholder model\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45819f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.<\\/p>\",\"text_color\":\"#252425\",\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d03c442\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"S: School, Sarpanch &members of the local self-government (Panchayat).\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"M: Media person\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"A: Administration and Academia\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"R: Regional Leaders: influential people respected by Adivasi, local NGOs\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"},{\"text\":\"T: Tribal Families\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"92cd4b9\"}],\"space_between\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#252425\",\"text_indent\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"icon_color_hover\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#ed6421\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebc9368\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"466cf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7a168da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.<\\/p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and\\u00a0<strong>the first ray of light shines through.<\\/strong>\\u00a0They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.<\\/p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community\\u2019s help, volunteers to ensure higher enrolment and improved outcomes.<\\/p>\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f46833c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"324e9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"190393b\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Aahan Model \\u2013 A.C.E\\n\",\"title_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#ED642130\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23942f17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"3e4d66ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5d154dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awareness\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5836b691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br \\/>This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.<\\/p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"68a5aadb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d09fc0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd19270\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"7d27336\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7232ed2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"70725b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5552bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Collective Action\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f83c37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.<\\/p><p>This is a vital driver for the transformation in critical issues of gender discrimination.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2873587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"292610e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"d015dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education, knowledge and skills\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1048e1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><p>Education, knowledge and skills are fundamental to enable girls\\u2019 to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6dfe18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a82326e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f700e24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2855bb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"25b448d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ee7a294\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"6f1be302\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1363e259\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fea02e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"7f0dc89a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"542e72d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"425b1965\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e4ac4fa\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"97435d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c24a7c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d2f93d3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64222d0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"64a90aac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"378e5bd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2460,438,'_elementor_edit_mode','builder'),(2461,438,'_elementor_template_type','wp-page'),(2462,438,'_elementor_version','3.6.5'),(2463,438,'_elementor_pro_version','3.6.4'),(2464,438,'_wp_page_template','elementor_canvas'),(2465,438,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2466,438,'_elementor_data','[{\"id\":\"4ea1bbba\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"60c8a0d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"81c3112\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"32c9930f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"25deee88\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"478dfca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2c3b7fa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3402dfb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e5bfdc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85e3ea5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"76449498\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"72275cda\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"3bcaf4b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f8f27d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"d48aeb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fbbf2f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef015d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3958df57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3eab094\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7dbacb7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"46205ad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7668e4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0a813f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4202c682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"67368230\",\"elType\":\"widget\",\"settings\":{\"title\":\"A multi-stakeholder model\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45819f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.<\\/p>\",\"text_color\":\"#252425\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d03c442\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"S: School, Sarpanch &members of the local self-government (Panchayat).\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"M: Media person\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"A: Administration and Academia\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"R: Regional Leaders: influential people respected by Adivasi, local NGOs\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"},{\"text\":\"T: Tribal Families\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"92cd4b9\"}],\"space_between\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#252425\",\"text_indent\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"icon_color_hover\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#ed6421\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebc9368\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"466cf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7a168da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.<\\/p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and\\u00a0<strong>the first ray of light shines through.<\\/strong>\\u00a0They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.<\\/p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community\\u2019s help, volunteers to ensure higher enrolment and improved outcomes.<\\/p>\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f46833c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"324e9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"190393b\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Aahan Model \\u2013 A.C.E\\n\",\"title_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#ED642130\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23942f17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"3e4d66ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5d154dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awareness\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5836b691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br \\/>This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.<\\/p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"68a5aadb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d09fc0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd19270\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"7d27336\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7232ed2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"70725b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5552bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Collective Action\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f83c37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.<\\/p><p>This is a vital driver for the transformation in critical issues of gender discrimination.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2873587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"292610e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"d015dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education, knowledge and skills\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1048e1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><p>Education, knowledge and skills are fundamental to enable girls\\u2019 to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6dfe18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a82326e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f700e24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2855bb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"25b448d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ee7a294\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"6f1be302\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1363e259\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fea02e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"7f0dc89a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"542e72d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"425b1965\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e4ac4fa\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"97435d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c24a7c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d2f93d3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64222d0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"64a90aac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"378e5bd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2467,411,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(2468,439,'_elementor_edit_mode','builder'),(2469,439,'_elementor_template_type','wp-page'),(2470,439,'_elementor_version','3.6.5'),(2471,439,'_elementor_pro_version','3.6.4'),(2472,439,'_wp_page_template','elementor_canvas'),(2473,439,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2474,439,'_elementor_data','[{\"id\":\"4ea1bbba\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"60c8a0d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"81c3112\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"32c9930f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"25deee88\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"478dfca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2c3b7fa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3402dfb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e5bfdc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85e3ea5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"76449498\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"72275cda\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"3bcaf4b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f8f27d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"d48aeb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fbbf2f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef015d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3958df57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3eab094\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7dbacb7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"46205ad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7668e4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0a813f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4202c682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"67368230\",\"elType\":\"widget\",\"settings\":{\"title\":\"A multi-stakeholder model\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45819f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.<\\/p>\",\"text_color\":\"#252425\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d03c442\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"S: School, Sarpanch &members of the local self-government (Panchayat).\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"M: Media person\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"A: Administration and Academia\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"R: Regional Leaders: influential people respected by Adivasi, local NGOs\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"},{\"text\":\"T: Tribal Families\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"92cd4b9\"}],\"space_between\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#252425\",\"text_indent\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"icon_color_hover\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#ed6421\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebc9368\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"466cf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7a168da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.<\\/p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and\\u00a0<strong>the first ray of light shines through.<\\/strong>\\u00a0They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.<\\/p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community\\u2019s help, volunteers to ensure higher enrolment and improved outcomes.<\\/p>\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f46833c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"324e9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"190393b\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Aahan Model \\u2013 A.C.E\\n\",\"title_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#ED642130\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23942f17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"3e4d66ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5d154dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awareness\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5836b691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br \\/>This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.<\\/p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"68a5aadb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d09fc0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd19270\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"7d27336\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7232ed2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"70725b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5552bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Collective Action\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f83c37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.<\\/p><p>This is a vital driver for the transformation in critical issues of gender discrimination.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2873587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"292610e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"d015dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education, knowledge and skills\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1048e1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><p>Education, knowledge and skills are fundamental to enable girls\\u2019 to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6dfe18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a82326e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f700e24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2855bb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"25b448d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ee7a294\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"6f1be302\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1363e259\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fea02e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"7f0dc89a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"542e72d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"425b1965\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e4ac4fa\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"97435d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c24a7c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d2f93d3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64222d0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"64a90aac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"378e5bd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2475,439,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(2476,440,'_elementor_edit_mode','builder'),(2477,440,'_elementor_template_type','wp-page'),(2478,440,'_elementor_version','3.6.5'),(2479,440,'_elementor_pro_version','3.6.4'),(2480,440,'_wp_page_template','elementor_canvas'),(2481,440,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2482,440,'_elementor_data','[{\"id\":\"4ea1bbba\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"60c8a0d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"81c3112\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"32c9930f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"25deee88\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"478dfca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2c3b7fa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3402dfb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e5bfdc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85e3ea5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"76449498\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"72275cda\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"3bcaf4b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f8f27d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"d48aeb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fbbf2f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef015d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3958df57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3eab094\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7dbacb7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"46205ad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7668e4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0a813f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4202c682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"67368230\",\"elType\":\"widget\",\"settings\":{\"title\":\"A multi-stakeholder model\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45819f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.<\\/p>\",\"text_color\":\"#252425\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d03c442\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"S: School, Sarpanch &members of the local self-government (Panchayat).\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"M: Media person\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"A: Administration and Academia\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"R: Regional Leaders: influential people respected by Adivasi, local NGOs\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"},{\"text\":\"T: Tribal Families\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"92cd4b9\"}],\"space_between\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#252425\",\"text_indent\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"icon_color_hover\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#ed6421\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebc9368\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"466cf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7a168da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.<\\/p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and\\u00a0<strong>the first ray of light shines through.<\\/strong>\\u00a0They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.<\\/p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community\\u2019s help, volunteers to ensure higher enrolment and improved outcomes.<\\/p>\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f46833c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"324e9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"190393b\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Aahan Model \\u2013 A.C.E\\n\",\"title_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#ED642130\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23942f17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"3e4d66ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5d154dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awareness\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5836b691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br \\/>This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.<\\/p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"68a5aadb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d09fc0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd19270\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"7d27336\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7232ed2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"70725b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5552bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Collective Action\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f83c37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.<\\/p><p>This is a vital driver for the transformation in critical issues of gender discrimination.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2873587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"292610e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"d015dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education, knowledge and skills\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1048e1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><p>Education, knowledge and skills are fundamental to enable girls\\u2019 to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6dfe18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a82326e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f700e24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2855bb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"25b448d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ee7a294\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"6f1be302\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1363e259\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fea02e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"7f0dc89a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"542e72d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"425b1965\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e4ac4fa\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"97435d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c24a7c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d2f93d3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64222d0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"64a90aac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"378e5bd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2483,440,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(2484,441,'_elementor_edit_mode','builder'),(2485,441,'_elementor_template_type','wp-page'),(2486,441,'_elementor_version','3.6.5'),(2487,441,'_elementor_pro_version','3.6.4'),(2488,441,'_wp_page_template','elementor_canvas'),(2489,441,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2490,441,'_elementor_data','[{\"id\":\"4ea1bbba\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"60c8a0d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"81c3112\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"32c9930f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"25deee88\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"478dfca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2c3b7fa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3402dfb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e5bfdc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85e3ea5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"76449498\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"72275cda\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"3bcaf4b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f8f27d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"d48aeb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fbbf2f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef015d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3958df57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3eab094\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7dbacb7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"46205ad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7668e4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0a813f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4202c682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"67368230\",\"elType\":\"widget\",\"settings\":{\"title\":\"A multi-stakeholder model\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45819f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.<\\/p>\",\"text_color\":\"#252425\",\"__globals__\":{\"typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d03c442\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"S: School, Sarpanch &members of the local self-government (Panchayat).\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"M: Media person\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"A: Administration and Academia\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"R: Regional Leaders: influential people respected by Adivasi, local NGOs\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"},{\"text\":\"T: Tribal Families\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"92cd4b9\"}],\"space_between\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#252425\",\"text_indent\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"icon_color_hover\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#ed6421\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebc9368\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"466cf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7a168da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.<\\/p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and\\u00a0<strong>the first ray of light shines through.<\\/strong>\\u00a0They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.<\\/p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community\\u2019s help, volunteers to ensure higher enrolment and improved outcomes.<\\/p>\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f46833c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"324e9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"190393b\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Aahan Model \\u2013 A.C.E\\n\",\"title_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#ED642130\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23942f17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"3e4d66ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5d154dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awareness\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5836b691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br \\/>This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.<\\/p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"68a5aadb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d09fc0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd19270\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"7d27336\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7232ed2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"70725b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"5552bff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Collective Action\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f83c37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.<\\/p><p>This is a vital driver for the transformation in critical issues of gender discrimination.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2873587\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"292610e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"d015dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education, knowledge and skills\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1048e1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><div class=\\\"container\\\"><div id=\\\"content\\\" class=\\\"site-content\\\"><div class=\\\"row\\\"><div id=\\\"primary\\\" class=\\\"content-area\\\"><p>Education, knowledge and skills are fundamental to enable girls\\u2019 to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6dfe18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a82326e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"id\":41,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f700e24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2855bb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"25b448d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ee7a294\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"6f1be302\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1363e259\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fea02e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"7f0dc89a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"542e72d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"425b1965\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e4ac4fa\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"97435d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c24a7c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d2f93d3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64222d0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"64a90aac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"378e5bd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2491,441,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(2492,442,'_menu_item_type','post_type'),(2493,442,'_menu_item_menu_item_parent','77'),(2494,442,'_menu_item_object_id','415'),(2495,442,'_menu_item_object','page'),(2496,442,'_menu_item_target',''),(2497,442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2498,442,'_menu_item_xfn',''),(2499,442,'_menu_item_url',''),(2501,443,'_menu_item_type','post_type'),(2502,443,'_menu_item_menu_item_parent','77'),(2503,443,'_menu_item_object_id','413'),(2504,443,'_menu_item_object','page'),(2505,443,'_menu_item_target',''),(2506,443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2507,443,'_menu_item_xfn',''),(2508,443,'_menu_item_url',''),(2510,444,'_menu_item_type','post_type'),(2511,444,'_menu_item_menu_item_parent','77'),(2512,444,'_menu_item_object_id','411'),(2513,444,'_menu_item_object','page'),(2514,444,'_menu_item_target',''),(2515,444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2516,444,'_menu_item_xfn',''),(2517,444,'_menu_item_url',''),(2519,77,'_wp_old_date','2022-05-16'),(2520,76,'_wp_old_date','2022-05-16'),(2521,75,'_wp_old_date','2022-05-16'),(2522,74,'_wp_old_date','2022-05-16'),(2523,73,'_wp_old_date','2022-05-16'),(2524,72,'_wp_old_date','2022-05-16'),(2525,71,'_wp_old_date','2022-05-16'),(2526,70,'_wp_old_date','2022-05-16'),(2527,413,'_elementor_edit_mode','builder'),(2528,413,'_elementor_template_type','wp-page'),(2529,413,'_elementor_version','3.6.5'),(2530,413,'_elementor_pro_version','3.6.4'),(2539,446,'_wp_attached_file','2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near.jpg'),(2540,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:105:\"2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:105:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:106:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:105:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:105:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:107:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:106:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:107:\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-1980x1322.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:1322;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2541,446,'_elementor_source_image_hash','4299c22cdd9b3c5b3ef763b096c569f57e90ad5e'),(2542,447,'_wp_attached_file','2022/05/Image-PZ7TQP6.jpg'),(2543,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1007;s:4:\"file\";s:25:\"2022/05/Image-PZ7TQP6.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-PZ7TQP6-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-PZ7TQP6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-PZ7TQP6-768x755.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2544,447,'_elementor_source_image_hash','0c9969eb86242299067cf58ce945ace2037fe167'),(2545,448,'_wp_attached_file','2022/05/Image-PVZXQSC.jpg'),(2546,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1007;s:4:\"file\";s:25:\"2022/05/Image-PVZXQSC.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-PVZXQSC-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-PVZXQSC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-PVZXQSC-768x755.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2547,448,'_elementor_source_image_hash','4b4fbab6336a554310996da566ac8784e0f71bb1'),(2548,449,'_wp_attached_file','2022/05/Image-KEAZPUR.jpg'),(2549,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1007;s:4:\"file\";s:25:\"2022/05/Image-KEAZPUR.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Image-KEAZPUR-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Image-KEAZPUR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Image-KEAZPUR-768x755.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2550,449,'_elementor_source_image_hash','c7c98ef486908be85c38b906e6aa2df8cdf4441e'),(2551,450,'_wp_attached_file','2022/05/placeholder-5.png'),(2552,450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-5.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-5-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-5-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-5-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2553,450,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(2554,451,'_wp_attached_file','2022/05/placeholder-6.png'),(2555,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-6.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-6-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-6-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-6-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2556,451,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(2557,452,'_wp_attached_file','2022/05/placeholder-7.png'),(2558,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-7.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-7-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-7-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-7-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2559,452,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(2560,453,'_wp_attached_file','2022/05/placeholder-8.png'),(2561,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2022/05/placeholder-8.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-8-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-8-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-8-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2562,453,'_elementor_source_image_hash','1c43bab6020ecef72452e1d0ef885da3b40fb105'),(2563,454,'_elementor_edit_mode','builder'),(2564,454,'_elementor_template_type','page'),(2565,454,'_elementor_version','3.6.5'),(2566,454,'_elementor_pro_version','3.6.4'),(2567,455,'_elementor_edit_mode','builder'),(2568,455,'_elementor_template_type','page'),(2569,455,'_elementor_version','3.6.5'),(2570,455,'_elementor_pro_version','3.6.4'),(2571,454,'_wp_page_template','elementor_header_footer'),(2572,454,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2573,454,'_elementor_data','[{\"id\":\"6bbfdbaf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"446\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25c718f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"450e23c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1619f363\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"773fda47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Volunteer\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3b25f58d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8716736\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Volunteer\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7521abd3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"591bc8d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17ef68ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Volunteers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"105835dc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Them\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dbb8683\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74f2f584\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ffca52e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e5080c1\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-7GJ5W9M.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"ekit_team_image_background_background\":\"classic\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"4659cf37\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Armaan Cullen\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"73ad800d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ff757e3\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-VZKUZZD.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"78e8d70d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Esha Wheatley\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"384557ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d0063cc\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-5S79FQC.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"655d5abc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Natalie Whyte\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6383f47d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59482cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ddd2809\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"447\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-PZ7TQP6.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"ekit_team_image_background_background\":\"classic\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"fd288ca\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Rodney Britt\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"40866954\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"199300d4\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"448\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-PVZXQSC.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"7789a11f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mya Hines\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"1626d939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6493638a\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"449\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-KEAZPUR.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"4d70c231\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Aalia Bass\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cbe0369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31ab8e27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2074d933\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a62ccef\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1650352e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc86e9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64a7ce6f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34c60e4a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"219dfbb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43091493\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e7f10c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e59160b\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":450,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-5.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"},{\"id\":\"34ea9b44\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":451,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-6.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"1217c349\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"592a1bf4\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":452,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-7.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"},{\"id\":\"33a53071\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":453,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-8.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"49f410cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e8d4b1e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{\\\"Give A Hand To Make <br> The Better World\\\"}}\",\"ekit_heading_title_tag\":\"h4\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Shadows Into Light\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"500\",\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"classic\",\"ekit_heading_focused_title_secondary_bg_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-80\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_heading_focused_title_secondary_bg_color\":\"\"},\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20743105\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4628657d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"603ff763\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"987***1611121246417\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"74cf3dc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45c926dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Requirements\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34260baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Volunteer\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f534a7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c256b9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quis nostrud exercitation ullamco laboris\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Duis aute irure dolor in reprehenderit in voluptate\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Excepteur sint occaecat cupidatat non proident\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Consectetur adipiscing elit, sed do eiusmod tempor\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f74f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Process\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a59df87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2574,456,'_elementor_edit_mode','builder'),(2575,456,'_elementor_template_type','page'),(2576,456,'_elementor_version','3.6.5'),(2577,456,'_elementor_pro_version','3.6.4'),(2578,456,'_wp_page_template','elementor_header_footer'),(2579,456,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2580,456,'_elementor_data','[{\"id\":\"6bbfdbaf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"446\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25c718f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"450e23c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1619f363\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"773fda47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Volunteer\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3b25f58d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8716736\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Volunteer\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7521abd3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"591bc8d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17ef68ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Volunteers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"105835dc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Them\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dbb8683\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74f2f584\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ffca52e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e5080c1\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"355\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-7GJ5W9M.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"ekit_team_image_background_background\":\"classic\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"4659cf37\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Armaan Cullen\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"73ad800d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ff757e3\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"356\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-VZKUZZD.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"78e8d70d\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Esha Wheatley\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"384557ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d0063cc\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"357\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-5S79FQC.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"655d5abc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Natalie Whyte\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6383f47d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59482cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ddd2809\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"447\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-PZ7TQP6.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"ekit_team_image_background_background\":\"classic\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"fd288ca\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Rodney Britt\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"40866954\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"199300d4\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"448\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-PVZXQSC.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"7789a11f\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mya Hines\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"1626d939\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6493638a\",\"elType\":\"widget\",\"settings\":{\"ekit_team_style\":\"long_height_hover\",\"ekit_team_image\":{\"id\":\"449\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Image-KEAZPUR.jpg\"},\"ekit_team_thumbnail_size\":\"full\",\"ekit_team_name\":\"\",\"ekit_team_position\":\"\",\"ekit_team_short_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_social_icons\":[{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"_id\":\"0a855b3\",\"ekit_team_label\":\"Facebook\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_team_label\":\"Twitter\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"602dc83\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"},{\"icon\":\"icon icon-facebook\",\"label\":\"Facebook\",\"ekit_team_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_team_label\":\"Instagram\",\"ekit_team_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"20c3ef5\",\"__globals__\":{\"ekit_team_socialmedia_icon_bg_color\":\"\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"\",\"ekit_team_socialmedia_icon_color\":\"\"},\"ekit_team_socialmedia_icon_color\":\"#252425\",\"ekit_team_socialmedia_icon_bg_color\":\"#FCBC45\",\"ekit_team_socialmedia_icon_hover_color\":\"#FFFFFF\",\"ekit_team_socialmedia_icon_hover_bg_color\":\"#252425\",\"ekit_team_socialmedia_border_border\":\"\",\"ekit_team_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_color\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_team_socialmedia_border_hover_border\":\"\",\"ekit_team_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_team_socialmedia_border_hover_color\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_team_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_team_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \"}],\"ekit_team_description\":\"A small river named Duden flows by their place and supplies it with the necessary\",\"ekit_team_phone\":\"+1 (859) 254-6589\",\"ekit_team_email\":\"info@example.com\",\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialmedai_list_style_use_height_and_width\":\"yes\",\"ekit_socialmedai_list_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_z_index\":2,\"ekit_team_chose_popup\":\"\",\"overlay_height\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"ekit_team_image_background_background\":\"classic\",\"overlay_height_tablet\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_socialmedai_list_display_tablet\":\"inline-block\",\"ekit_socialmedai_list_width_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"ekit_socialmedai_list_line_height_tablet\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"ekit_team_top_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_team_close_icon_changes\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"ekit_team_background_content_normal_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_normal_slideshow_gallery\":[],\"ekit_team_background_content_hover_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_content_hover_slideshow_gallery\":[],\"ekit_team_content_overly_color_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_content_overly_color_slideshow_gallery\":[],\"ekit_team_image_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_image_background_slideshow_gallery\":[],\"ekit_team_default_img_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_default_img_overlay_slideshow_gallery\":[],\"ekit_team_background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_background_overlay_slideshow_gallery\":[],\"ekit_team_modal_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_team_modal_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-team\"},{\"id\":\"4d70c231\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Aalia Bass\",\"ekit_heading_title_tag\":\"h3\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"Volunteer\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_color\":\"#252425\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_extra_title_color\":\"#6F747E\",\"ekit_heading_extra_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_color\":\"\",\"ekit_heading_extra_title_color\":\"\",\"_background_color\":\"\",\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_heading_extra_title_typography_typography\":\"globals\\/typography?id=text\"},\"_background_background\":\"classic\",\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cbe0369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"36\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"180\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31ab8e27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2074d933\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Funfact\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a62ccef\",\"elType\":\"widget\",\"settings\":{\"title\":\"You Have The Power Today To Change Tomorrow\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1650352e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris\",\"text_color\":\"#FFFFFF\",\"align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc86e9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-240\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64a7ce6f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},\"image_size\":\"full\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34c60e4a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"219dfbb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43091493\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-220\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e7f10c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e59160b\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Child\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12M\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Children Saved\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":450,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-5.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_hover_border_bottom\":\"\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"},{\"id\":\"34ea9b44\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Campaigns Running\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":451,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-6.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"1217c349\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"592a1bf4\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2450\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Volunteers\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":452,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-7.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"},{\"id\":\"33a53071\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-globe\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"150\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Country\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_hover_primary_color\":\"\",\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_number_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"id\":453,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-8.png\"},\"ekit_funfact_icon_primary_color\":\"#FCBC45\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_title_color\":\"#6F747E\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_funfact_bg_ovelry_color\":\"#310B0B\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"ekit_funfact_number_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"49f410cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e8d4b1e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"{{\\\"Give A Hand To Make <br> The Better World\\\"}}\",\"ekit_heading_title_tag\":\"h4\",\"show_title_border\":\"\",\"title_float_left\":\"\",\"ekit_heading_sub_title_show\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Shadows Into Light\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"500\",\"ekit_heading_focused_title_secondary_spacing\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"ekit_heading_use_focused_title_bg\":\"yes\",\"ekit_heading_focused_title_secondary_bg_background\":\"classic\",\"ekit_heading_focused_title_secondary_bg_color\":\"#FCBC45\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-80\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_heading_focused_title_secondary_bg_color\":\"\"},\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_seperator_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20743105\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_background\":\"classic\",\"z_index\":1,\"__globals__\":{\"background_color_b\":\"\",\"background_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_position\":\"middle\",\"background_color_b\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.070000000000000006661338147750939242541790008544921875,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4628657d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"603ff763\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"987***1611121246417\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"74cf3dc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45c926dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Requirements\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34260baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Become A Volunteer\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f534a7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c256b9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quis nostrud exercitation ullamco laboris\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Duis aute irure dolor in reprehenderit in voluptate\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Excepteur sint occaecat cupidatat non proident\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Consectetur adipiscing elit, sed do eiusmod tempor\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f74f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"Process\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a59df87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2581,454,'_elementor_page_assets','a:0:{}'),(2582,454,'envato_tk_source_kit','6'),(2583,454,'envato_tk_source_index','7'),(2584,411,'_elementor_css','a:6:{s:4:\"time\";i:1652877503;s:5:\"fonts\";a:9:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:7;s:4:\"Lato\";i:13;s:6:\"Roboto\";i:18;s:4:\"Muli\";i:19;s:14:\"Odor Mean Chey\";i:21;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"72275cda\";i:1;s:8:\"72275cda\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2585,457,'_elementor_edit_mode','builder'),(2586,457,'_elementor_template_type','wp-page'),(2587,457,'_elementor_version','3.6.5'),(2588,457,'_elementor_pro_version','3.6.4'),(2589,457,'_wp_page_template','elementor_canvas'),(2590,457,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2591,457,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"button_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2592,457,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2593,457,'_elementor_css','a:6:{s:4:\"time\";i:1652871943;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:9;s:9:\"ekiticons\";i:13;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2594,458,'_elementor_edit_mode','builder'),(2595,458,'_elementor_template_type','wp-page'),(2596,458,'_elementor_version','3.6.5'),(2597,458,'_elementor_pro_version','3.6.4'),(2598,458,'_wp_page_template','elementor_canvas'),(2599,458,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2600,458,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"animation_text\":\"shrink\",\"submenu_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"border_color\":\"#FCBC45\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"primary_color\":\"#FFE7BB\",\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"button_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2601,458,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2602,458,'_elementor_css','a:6:{s:4:\"time\";i:1652871943;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:9;s:9:\"ekiticons\";i:13;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2603,459,'_elementor_edit_mode','builder'),(2604,459,'_elementor_template_type','wp-page'),(2605,459,'_elementor_version','3.6.5'),(2606,459,'_elementor_pro_version','3.6.4'),(2607,459,'_wp_page_template','elementor_canvas'),(2608,459,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";}'),(2609,459,'_elementor_data','[{\"id\":\"21c925a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"73a9a61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"423ad811\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2203dd60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"490c1995\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"20b37320\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1a868a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6b6ed96b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13f401f1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21ce5960\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3133a7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"33ec286c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"d75a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73ea4de\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":297}],\"isInner\":false},{\"id\":\"3e9af3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"280b5faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c9c40a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"bd2ff1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa22e60\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4227fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5fd04d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Programs\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2e8fd97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93abe1c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"69b4260\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"24eac7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"New School For Childrens\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db82ff2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"7860190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e93a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation\\u2019s programs aim to facilitate the individual girl\\u2019s journey towards empowerment through awareness, support and resources that make that journey possible.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d31dadb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Education and training on 21st Century skills\",\"icon\":\"fa fa-check\",\"_id\":\"d36a2cc\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Collective action through Awareness, Community and Network Building\",\"icon\":\"fa fa-check\",\"_id\":\"222bbcf\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Arts and Sports\",\"icon\":\"fa fa-check\",\"_id\":\"507ce5f\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Capacity and Agency Building\",\"icon\":\"fa fa-check\",\"__fa4_migrated\":{\"selected_icon\":true},\"_id\":\"380ee88\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=primary\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"df083c6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2919668\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011e31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"title_color\":\"#252425\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=ffbaf7c\"},\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8427115\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based \\u2013 Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_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\":\"f58bc0e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"f876351\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"d6c347b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b0c974\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. <\\/i>\",\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cf64d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Marlene Redman - Founder Humanite\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"622315b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\",\"align_mobile\":\"left\",\"text_color\":\"#6F747E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7048fa4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFE7BB\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f31ad7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f1a12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ff8a8a3\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"55182b1\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"}},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"41a7dc5\"},{\"ekit_socialshare_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#252425\",\"ekit_socialshare_icon_bg_color\":\"#FCBC45\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_icon_color\":\"\"},\"_id\":\"6f905cb\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_list_align_mobile\":\"center\",\"ekit_socialshare_list_item_width_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_item_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ekit_socialshare_list_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_socialshare_list_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.79599999999999937472239253111183643341064453125},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef17890\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"01f0b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e8b59\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6c2b3\",\"elType\":\"section\",\"settings\":{\"background_color\":\"#FFE7BB\",\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=c53d536\"}},\"elements\":[{\"id\":\"307b958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e359e99\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"text\":\"Item #1\",\"_id\":\"704c274\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"id\":153,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"9962b44\",\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hands-of-young-homeless-african-man-begging-for-food.jpg\",\"id\":43,\"alt\":\"\",\"source\":\"library\"}},{\"sub_title\":\"\",\"title\":\"\",\"description\":\"\",\"button_text\":\"Donate\",\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\",\"id\":36,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"abc4d5a\"}],\"columns_count\":\"2\",\"__globals__\":{\"button_color_background\":\"globals\\/colors?id=primary\",\"button_color_font\":\"globals\\/colors?id=secondary\",\"button_color_background_hover\":\"globals\\/colors?id=c53d536\"}},\"elements\":[],\"widgetType\":\"stratum-advanced-slider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9bd2f2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b122ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"10781cb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a70991b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56bd4528\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72c3e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6ba25e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67fa2b38\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a65dfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47ad03a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"25644880\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.5270000000000010231815394945442676544189453125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a21350\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ec4ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33cb5ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":250}],\"isInner\":false},{\"id\":\"3ae6df20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.469999999999998863131622783839702606201171875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c41de1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3e11c6\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7ad5ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9733598\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b61c4d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2610,459,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2611,459,'_elementor_css','a:6:{s:4:\"time\";i:1652871943;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:9;s:9:\"ekiticons\";i:13;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2612,460,'_elementor_edit_mode','builder'),(2613,460,'_elementor_template_type','wp-page'),(2614,460,'_elementor_version','3.6.5'),(2615,460,'_elementor_pro_version','3.6.4'),(2616,461,'_elementor_edit_mode','builder'),(2617,461,'_elementor_template_type','wp-page'),(2618,461,'_elementor_version','3.6.5'),(2619,461,'_elementor_pro_version','3.6.4'),(2620,413,'_wp_page_template','elementor_canvas'),(2621,413,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2622,413,'_elementor_data','[{\"id\":\"10c3a8b9\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"4a6f39a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5cfc9dd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4e6ea3ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"6acc268b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1f64b5cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"71ea979a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18284114\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"223932f6\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62ade6ef\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"618ce30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"439b0a9e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"39c9b61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd6bf1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"3eac74e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"24b262ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c6eba3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"357cbe4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a174c82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"29f0a528\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"4cd2b92f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6c1b951e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c71709\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"076d2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"613c7c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\",\"id\":367,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b25daba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"9b455e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr Rashmi Tiwari\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"784ac0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">Founder and Director of the Aahan Foundation, a Doctorate in Economics, and a Diploma in Sustainability and Responsible Leadership from The Swedish Institute has held leadership positions in Corporates before she founded the NGO. She was the Director at the American Chamber of Commerce (AMCHAM) in India and Executive Director at The CEO Clubs India.<\\/p><p class=\\\"has-small-font-size\\\">She launched Aahan Foundation in 2013 to address a string of interconnected social problems related to girls &amp; women, including Gender Inequality, Girl Child Trafficking, Child Marriage, Poverty, Lack of awareness and facilities for Health, Hygiene and Sanitation, Illiteracy.<\\/p><p class=\\\"has-small-font-size\\\">She uses her experience as a certified leadership coach using tools based on the latest research on brain science to help underprivileged girls transform their personal and professional lives.<\\/p><p>This is a vital driver for the transformation in critical issues of gender discrimination.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7629fc6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e2a3cdf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2aaec75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"178462b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"58c1a2c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5e9d822\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u201d As part of a social welfare funding project, I visited tribal homes in Orissa, India. During one of the visits to a small village, parents of minor girls as young as 5-6 years old offered them to me in exchange for money. The ground reality of the red corridor in the country shook me to the core. This marked the watershed moment of my life. Returning to Delhi, I decided to quit my corporate job to visit tribal areas of India in an attempt to understand the extent of trafficking and empower tribal girls and women.\\u201d<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dc2f9bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr Rashmi Tiwari<\\/p>\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"de0c1d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">Her efforts have been widely recognized. She is a Fellow of Vital Voices (USA), Fellow of SIMP. She was selected as one of India\\u2019s emerging women business leaders under the Fortune\\/US State Department Leadership Mentorship Program.\\u00a0<\\/p><ul class=\\\"has-small-font-size\\\"><li>\\u00a0Top 100 Social Enablers 2017<\\/li><li>Women Rights Award<\\/li><li>Chosen as Tejaswini<\\/li><li>The Good Crusader\\u00a0<\\/li><li>Top 100 Women Leaders by TIAW<\\/li><li>VVLead Fellow<\\/li><li>Participant Global Ambassador Program<\\/li><li>\\u201cPushpalata Ranade National\\u00a0Bravery\\u00a0Award\\u201d<\\/li><li>US State Department &amp; Fortune Magazine Mentorship Program<\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ae9c81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"787c8d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"96e6118\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"67ae871\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e8f5663\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"3388037\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bhavleen Kaur Bali, Director-Education\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a671b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">For Bhavleen, to become a teacher and shape young minds to become their best versions has been her childhood dream. She could never imagine herself doing anything else and she took every step to achieve excellence in this field and achieve her dream.<\\/p><p class=\\\"has-small-font-size\\\">After completing her Masters in commerce, she completed her B.Ed and has been in the education space ever since. She worked in some of the most recognised education establishments in the country before crossing paths with Aahan and found this whole new realm to not only educate kids coming from marginalised backgrounds but also the \\u2018Adivasi girls\\u2019 who are survivors of gender-based violence.<\\/p><p class=\\\"has-small-font-size\\\">These girls touched her heart the moment she met them and she devoted herself to the cause by taking over the reins of the education team of Aahan. She is setting up replicable models for teaching girls and loves working every day in a job that she has a heart and soul in.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3957727\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"069256a\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":110,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hector-martinez-110928-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"b6bddb1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ea5ff1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"ad1a964\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kriti Sinha, Edumentor & Storyteller\\n\\n\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b448864\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">A graduate of Kamala Nehru College in Psychology and Human Resource Management, Kriti is currently pursuing her Master\\u2019s in Applied Psychology from Amity University.<\\/p><p class=\\\"has-small-font-size\\\">Journey with Aahan and Adivasi girls started out as an internship but slowly made her a part of something even bigger. Her interaction with the girls in Jharkhand exposed her to the bitter truth of the inequalities of our education system and the wide divide between rural and urban areas.<\\/p><p class=\\\"has-small-font-size\\\">This led her to her mission of mentoring and educating Adivasi girls with foundational level communication skills and through the CREATE model she aims to go a step further by focusing on social-emotional development.<\\/p><p class=\\\"has-small-font-size\\\">Creating a safe space has helped the girls come forward with their stories of courage and everything that they have ever been through. She aims to bring forward these stories and help these girls break the glass ceiling.<\\/p><p class=\\\"has-small-font-size\\\">She is also interested in understanding the impact of Domestic Violence on the mental health and development of women and children in Jharkhand.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b0e7a0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"11ff3de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e0e029d\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"54c5734\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8cf57c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2bf1efe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Program Coordinator Artee K Munda\\n\\n\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865f8a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An Udan Fellow of 2017, she is the Program Co-ordinator of Aahan and oversees all the programs run at the ground level. She works towards helping the community understand the ill effects of trafficking, child marriage, girl child rights through paintings. She wants to use her art to create awareness about the GBV prevalent in tribal society, rich tribal art and culture and depict the dreams of Aahan girls. She is also trying to revive the dying art of Sohrai.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b35924\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"c5c8a4c\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":110,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hector-martinez-110928-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"52e11f7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c63b75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5f7be86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda, Sports Coordinator\\n\\n\\n\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51ffc86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">Rupanti, born in Dhoti Village in Latehar District of Jharkhand is a Braveheart. A captain of the Aahan Bravehearts Football team, Rupanti has been awarded by the Jharkhand Government for her contribution to football at the grassroots. From holding village level community development programs to training girls in villages in Jharkhand, Rupanti plans and coordinates Aahan Foundation\\u2019s sports initiative.<\\/p><p class=\\\"has-small-font-size\\\">Rupanti visits extremely difficult and dangerous areas in Jharkhand to meet with girls and their parents. She has prevented many girls from being trafficked and married off at an early age.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3092647e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bf02ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"1c7969a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26278104\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"5b9465c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85215dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e519b83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3a7bf278\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e388b5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1567c416\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"118c3985\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"13ede8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d32cdd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf7e080\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e59c9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"380ca48f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7833ea32\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2623,462,'_elementor_edit_mode','builder'),(2624,462,'_elementor_template_type','wp-page'),(2625,462,'_elementor_version','3.6.5'),(2626,462,'_elementor_pro_version','3.6.4'),(2627,462,'_wp_page_template','elementor_canvas'),(2628,462,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2629,462,'_elementor_data','[{\"id\":\"10c3a8b9\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"4a6f39a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5cfc9dd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4e6ea3ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"6acc268b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1f64b5cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"71ea979a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"18284114\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"223932f6\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62ade6ef\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"618ce30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"439b0a9e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"39c9b61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cd6bf1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"3eac74e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"24b262ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c6eba3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"357cbe4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a174c82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"29f0a528\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"4cd2b92f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6c1b951e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c71709\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"wider\",\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"431\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/spacex-101796-unsplash.jpg\"},\"background_position\":\"center left\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"076d2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.296999999999997044142219237983226776123046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"613c7c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\",\"id\":367,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b25daba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.1580000000000012505552149377763271331787109375,\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"z_index\":1},\"elements\":[{\"id\":\"9b455e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr Rashmi Tiwari\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"header_size\":\"h1\",\"typography_font_family\":\"Lato\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_animation_delay\":100,\"_margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"784ac0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">Founder and Director of the Aahan Foundation, a Doctorate in Economics, and a Diploma in Sustainability and Responsible Leadership from The Swedish Institute has held leadership positions in Corporates before she founded the NGO. She was the Director at the American Chamber of Commerce (AMCHAM) in India and Executive Director at The CEO Clubs India.<\\/p><p class=\\\"has-small-font-size\\\">She launched Aahan Foundation in 2013 to address a string of interconnected social problems related to girls &amp; women, including Gender Inequality, Girl Child Trafficking, Child Marriage, Poverty, Lack of awareness and facilities for Health, Hygiene and Sanitation, Illiteracy.<\\/p><p class=\\\"has-small-font-size\\\">She uses her experience as a certified leadership coach using tools based on the latest research on brain science to help underprivileged girls transform their personal and professional lives.<\\/p><p>This is a vital driver for the transformation in critical issues of gender discrimination.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Lato\",\"custom_css\":\"selector{\\r\\n       max-height: 300px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector::-webkit-scrollbar{\\r\\nwidth: 14px:\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgba(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgba(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7629fc6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e2a3cdf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2aaec75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"178462b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"58c1a2c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5e9d822\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u201d As part of a social welfare funding project, I visited tribal homes in Orissa, India. During one of the visits to a small village, parents of minor girls as young as 5-6 years old offered them to me in exchange for money. The ground reality of the red corridor in the country shook me to the core. This marked the watershed moment of my life. Returning to Delhi, I decided to quit my corporate job to visit tribal areas of India in an attempt to understand the extent of trafficking and empower tribal girls and women.\\u201d<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dc2f9bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr Rashmi Tiwari<\\/p>\",\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"de0c1d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">Her efforts have been widely recognized. She is a Fellow of Vital Voices (USA), Fellow of SIMP. She was selected as one of India\\u2019s emerging women business leaders under the Fortune\\/US State Department Leadership Mentorship Program.\\u00a0<\\/p><ul class=\\\"has-small-font-size\\\"><li>\\u00a0Top 100 Social Enablers 2017<\\/li><li>Women Rights Award<\\/li><li>Chosen as Tejaswini<\\/li><li>The Good Crusader\\u00a0<\\/li><li>Top 100 Women Leaders by TIAW<\\/li><li>VVLead Fellow<\\/li><li>Participant Global Ambassador Program<\\/li><li>\\u201cPushpalata Ranade National\\u00a0Bravery\\u00a0Award\\u201d<\\/li><li>US State Department &amp; Fortune Magazine Mentorship Program<\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ae9c81\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"787c8d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"96e6118\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"67ae871\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e8f5663\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"3388037\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bhavleen Kaur Bali, Director-Education\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a671b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">For Bhavleen, to become a teacher and shape young minds to become their best versions has been her childhood dream. She could never imagine herself doing anything else and she took every step to achieve excellence in this field and achieve her dream.<\\/p><p class=\\\"has-small-font-size\\\">After completing her Masters in commerce, she completed her B.Ed and has been in the education space ever since. She worked in some of the most recognised education establishments in the country before crossing paths with Aahan and found this whole new realm to not only educate kids coming from marginalised backgrounds but also the \\u2018Adivasi girls\\u2019 who are survivors of gender-based violence.<\\/p><p class=\\\"has-small-font-size\\\">These girls touched her heart the moment she met them and she devoted herself to the cause by taking over the reins of the education team of Aahan. She is setting up replicable models for teaching girls and loves working every day in a job that she has a heart and soul in.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3957727\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"069256a\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":110,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hector-martinez-110928-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"b6bddb1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ea5ff1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"ad1a964\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kriti Sinha, Edumentor & Storyteller\\n\\n\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b448864\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">A graduate of Kamala Nehru College in Psychology and Human Resource Management, Kriti is currently pursuing her Master\\u2019s in Applied Psychology from Amity University.<\\/p><p class=\\\"has-small-font-size\\\">Journey with Aahan and Adivasi girls started out as an internship but slowly made her a part of something even bigger. Her interaction with the girls in Jharkhand exposed her to the bitter truth of the inequalities of our education system and the wide divide between rural and urban areas.<\\/p><p class=\\\"has-small-font-size\\\">This led her to her mission of mentoring and educating Adivasi girls with foundational level communication skills and through the CREATE model she aims to go a step further by focusing on social-emotional development.<\\/p><p class=\\\"has-small-font-size\\\">Creating a safe space has helped the girls come forward with their stories of courage and everything that they have ever been through. She aims to bring forward these stories and help these girls break the glass ceiling.<\\/p><p class=\\\"has-small-font-size\\\">She is also interested in understanding the impact of Domestic Violence on the mental health and development of women and children in Jharkhand.<\\/p><p>Aahan supported Artee through our Fellowship program \\u2018Urja\\u2019 in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b0e7a0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"11ff3de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"e0e029d\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"54c5734\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8cf57c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"2bf1efe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Program Coordinator Artee K Munda\\n\\n\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865f8a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>An Udan Fellow of 2017, she is the Program Co-ordinator of Aahan and oversees all the programs run at the ground level. She works towards helping the community understand the ill effects of trafficking, child marriage, girl child rights through paintings. She wants to use her art to create awareness about the GBV prevalent in tribal society, rich tribal art and culture and depict the dreams of Aahan girls. She is also trying to revive the dying art of Sohrai.<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"__globals__\":{\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b35924\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"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\":\"c5c8a4c\",\"elType\":\"widget\",\"settings\":{\"graphic_element\":\"none\",\"image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"icon\":\"\",\"title_text_a\":\"\",\"description_text_a\":\"\",\"background_a_background\":\"classic\",\"background_a_image\":{\"id\":110,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/hector-martinez-110928-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_a_position\":\"center center\",\"background_a_size\":\"cover\",\"title_text_b\":\"\",\"description_text_b\":\"\",\"button_text\":\"\",\"height\":{\"unit\":\"px\",\"size\":400},\"flip_direction\":\"right\",\"flip_3d\":\"elementor-flip-box--3d\",\"alignment_a\":\"left\",\"button_size\":\"lg\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"button_text_color\":\"#ffffff\",\"button_border_radius\":{\"unit\":\"px\",\"size\":50},\"_margin\":{\"unit\":\"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_b_background\":\"classic\",\"background_b_color\":\"#ED642100\",\"image_border_radius\":{\"unit\":\"px\",\"size\":7},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"flip_effect\":\"slide\",\"__globals__\":{\"background_b_color\":\"\",\"button_background_color\":\"globals\\/colors?id=primary\",\"button_border_color\":\"globals\\/colors?id=accent\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_motion_fx_mouse\":\"yes\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"52e11f7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":400},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c63b75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_align\":\"justify\"},\"elements\":[{\"id\":\"5f7be86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rupanti Munda, Sports Coordinator\\n\\n\\n\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"px\",\"size\":36},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51ffc86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-small-font-size\\\">Rupanti, born in Dhoti Village in Latehar District of Jharkhand is a Braveheart. A captain of the Aahan Bravehearts Football team, Rupanti has been awarded by the Jharkhand Government for her contribution to football at the grassroots. From holding village level community development programs to training girls in villages in Jharkhand, Rupanti plans and coordinates Aahan Foundation\\u2019s sports initiative.<\\/p><p class=\\\"has-small-font-size\\\">Rupanti visits extremely difficult and dangerous areas in Jharkhand to meet with girls and their parents. She has prevented many girls from being trafficked and married off at an early age.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"300\",\"custom_css\":\"selector{\\r\\n       max-height: 260px;\\r\\n       overflow-x: hidden;\\r\\n       overflow-y: scroll;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar{\\r\\nwidth: 14px;\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-track{\\r\\nbackground: rgb(144, 144, 144, 0.1);\\r\\n}\\r\\n\\r\\nselector :: -webkit-scrollbar-thumb{\\r\\nbackground: rgb(144, 144, 144, 0.31);\\r\\n}\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3092647e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bf02ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"1c7969a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26278104\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"5b9465c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85215dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e519b83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3a7bf278\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e388b5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1567c416\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"118c3985\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"13ede8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d32cdd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf7e080\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e59c9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"380ca48f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7833ea32\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2630,413,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(2631,415,'_elementor_edit_mode','builder'),(2632,415,'_elementor_template_type','wp-page'),(2633,415,'_elementor_version','3.6.5'),(2634,415,'_elementor_pro_version','3.6.4'),(2643,464,'_elementor_edit_mode','builder'),(2644,464,'_elementor_template_type','wp-page'),(2645,464,'_elementor_version','3.6.5'),(2646,464,'_elementor_pro_version','3.6.4'),(2647,465,'_elementor_edit_mode','builder'),(2648,465,'_elementor_template_type','wp-page'),(2649,465,'_elementor_version','3.6.5'),(2650,465,'_elementor_pro_version','3.6.4'),(2651,415,'_wp_page_template','elementor_canvas'),(2652,415,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (2653,415,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"f63dff2\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"6d7b34f\"}]},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"0d3af49\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"aff85cb\"}]},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"2739a18\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"9f0a023\"}]},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"2c7f254\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"1ce393b\"}]},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a640dcc\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"b47d748\"}]},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"017abf3\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"87a547f\"}]},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"34c34a8\"}]},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"b6e2539\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"c571aa9\"}]},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"bb79353\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"155c1ea\"}]},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"e7f78ce\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"33af518\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb98a83\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"cff0bb6\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"28cefe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"7f56773\"}]},\"elements\":[{\"id\":\"a2ad86d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"e22fe5d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6f41aa38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"321f278\"}]},\"elements\":[{\"id\":\"3426d30a\",\"elType\":\"widget\",\"settings\":{\"ekit_timelinehr_content_repeater\":[{\"ekit_timeline_line_title\":\"Establishment as an NGO Aahan Tribal Development Foundation\",\"ekit_timeline_line_content\":\"\",\"_id\":\"75bbf85\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2013\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"}},{\"ekit_timeline_line_title\":\"Mentoring Walk\",\"ekit_timeline_line_content\":\"Mentoring Walk, where we brought tribal girls and matched them with their mentors. It was our first partnership program with Vital Voices and DFID. It was a unique program for the stakeholders and led to several such walks in the coming years.\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2014\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"f81ff46\"},{\"ekit_timeline_line_title\":\"Mentorship Programs\",\"ekit_timeline_line_content\":\"Launched mentorship program for emerging change-makers, who were coming from all walks of life; students to Panchayat leaders.\\n\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2016\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"4dddf99\"},{\"ekit_timeline_line_title\":\"Formation of Aahan Bravehearts\",\"ekit_timeline_line_content\":\"National level football player Rupanti Munda represented India in Homeless Soccer World Cup in Oslo, Norwa\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2017\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"9552864\"},{\"ekit_timeline_line_title\":\"Young Ambassadors Program\",\"ekit_timeline_line_content\":\"Launch of Young Ambassadors Program.\\n& Joint Art Exhibition of Aahan Fellow Arti Munda and Aahan Ambassador Jannat Arora in Delhi.\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2018\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"4bb4252\"},{\"ekit_timeline_line_title\":\"Name changed to Aahan Foundation for Social Change.\",\"ekit_timeline_line_content\":\"Name changed to Aahan Foundation for Social Change from Aahan Tribal Development Foundation.\\nStarted a centre in Jaratoli village of Jonha panchayat to provide foundational learning, digital literacy, trauma healing etc.\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2019\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"bd53eec\"},{\"ekit_timeline_line_title\":\"Covid Relief Program\",\"ekit_timeline_line_content\":\"Covid 19 relief programs in the tribal regions.\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2020\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"de2d365\"},{\"ekit_timeline_line_title\":\"Affiliation of two football clubs with AIFF\",\"ekit_timeline_line_content\":\"Affiliation of two football clubs with All India Football Federation (AIFF) comprising players who are survivors of GBV\\n\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2021\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"5faf2c7\"}],\"ekit_timeline_content_title_color_hv\":\"#ffffff\",\"ekit_timeline_content_color_hv\":\"#ffffff\",\"ekit_timeline__container_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_timeline_content__sub_title_typography_typography\":\"custom\",\"ekit_timeline_content__sub_title_typography_font_family\":\"Roboto\",\"ekit_timeline_content__sub_title_typography_font_weight\":\"400\",\"ekit_timeline_content_title_typography_typography\":\"custom\",\"ekit_timeline_content_title_typography_font_family\":\"Montserrat\",\"ekit_timeline_content_title_typography_font_weight\":\"700\",\"ekit_timeline_content_typography_typography\":\"custom\",\"ekit_timeline_content_typography_font_family\":\"Roboto\",\"ekit_timeline_content_typography_font_weight\":\"400\",\"ekit_timeline_icon_address_typography_typography\":\"custom\",\"ekit_timeline_icon_address_typography_font_family\":\"Roboto\",\"ekit_timeline_icon_address_typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"3d59a97\"}],\"ekit_timeline_left_entrance_animation\":\"fadeIn\",\"ekit_timeline__container_inner_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ekit_timeline_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_timeline_icon_date_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_timeline_icon_date_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_timeline_icon_address_icon_size\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"ekit_timeline__item_margin_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_timeline_pin_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_pin_hover_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_line_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_pin_active_border_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_content_title_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_icon_color\":\"globals\\/colors?id=text\",\"ekit_timeline_item_icon_bg_color_group\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-timeline\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"87fed08\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"ffbab13\"}]},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"226b0fd\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"d0b1f79\"}]},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"7461e99\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"233f7d3\"}]},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"003d317\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"1a16299\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bb6928e\"}]},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"b799666\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"f8e33fc\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"202d7b3\"}]},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2654,466,'_elementor_edit_mode','builder'),(2655,466,'_elementor_template_type','wp-page'),(2656,466,'_elementor_version','3.6.5'),(2657,466,'_elementor_pro_version','3.6.4'),(2658,466,'_wp_page_template','elementor_canvas'),(2659,466,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2660,466,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2661,415,'_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}'),(2672,469,'_elementor_template_type','section'),(2673,469,'_elementor_data',NULL),(2674,469,'_elementor_edit_mode','builder'),(2675,469,'_wp_page_template','elementor_canvas'),(2676,415,'ht_page_views_count','3'),(2677,469,'_elementor_version','3.6.5'),(2678,469,'_elementor_pro_version','3.6.4'),(2679,470,'_elementor_edit_mode','builder'),(2680,470,'_elementor_template_type','wp-page'),(2681,470,'_elementor_version','3.6.5'),(2682,470,'_elementor_pro_version','3.6.4'),(2683,470,'_wp_page_template','elementor_canvas'),(2684,470,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2685,470,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2686,470,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2687,471,'_elementor_edit_mode','builder'),(2688,471,'_elementor_template_type','wp-page'),(2689,471,'_elementor_version','3.6.5'),(2690,471,'_elementor_pro_version','3.6.4'),(2691,471,'_wp_page_template','elementor_canvas'),(2692,471,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2693,471,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2694,471,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2695,472,'_elementor_edit_mode','builder'),(2696,472,'_elementor_template_type','wp-page'),(2697,472,'_elementor_version','3.6.5'),(2698,472,'_elementor_pro_version','3.6.4'),(2699,472,'_wp_page_template','elementor_canvas'),(2700,472,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2701,472,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2702,472,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2704,469,'ekit_post_views_count','1'),(2705,473,'_elementor_template_type','section'),(2706,473,'_elementor_data',NULL),(2707,473,'_elementor_edit_mode','builder'),(2708,473,'_wp_page_template','elementor_canvas'),(2709,473,'_elementor_version','3.6.5'),(2710,473,'_elementor_pro_version','3.6.4'),(2711,473,'ekit_post_views_count','1'),(2712,473,'_edit_lock','1652881673:1'),(2721,475,'_wp_attached_file','2022/05/placeholder-530.png'),(2722,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-530.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-530-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-530-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-530-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-530-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-530-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-530-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-530-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2723,475,'_elementor_source_image_hash','4b7dc976668c8563f3c0baca907bd9c30526ebbf'),(2724,476,'_wp_attached_file','2022/05/slider_img-7.jpeg'),(2725,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:750;s:4:\"file\";s:25:\"2022/05/slider_img-7.jpeg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"slider_img-7-300x141.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"slider_img-7-1024x480.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slider_img-7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"slider_img-7-768x360.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"slider_img-7-1536x720.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:25:\"slider_img-7-585x295.jpeg\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:26:\"slider_img-7-1170x536.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:25:\"slider_img-7-396x360.jpeg\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"slider_img-7-1200x563.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2726,476,'_elementor_source_image_hash','8ee5f7e0b5b63210ee4f365873f3a2f1105b9369'),(2727,477,'_wp_attached_file','2022/05/placeholder-531.png'),(2728,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-531.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-531-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-531-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-531-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-531-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-531-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-531-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-531-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2729,477,'_elementor_source_image_hash','056e13f50f7e83e86f6ab975d6c1c36e13d1962e'),(2730,478,'_wp_attached_file','2022/05/Features_img.jpeg'),(2731,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:351;s:4:\"file\";s:25:\"2022/05/Features_img.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Features_img-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Features_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:25:\"Features_img-350x295.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2732,478,'_elementor_source_image_hash','54b16e8fa6960e1bd56a35a2675660b7d989a7b2'),(2733,479,'_wp_attached_file','2022/05/placeholder-532.png'),(2734,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-532.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-532-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-532-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-532-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-532-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-532-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-532-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-532-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2735,479,'_elementor_source_image_hash','b183eb0b542df37ed713c0a6428bda5025c498be'),(2736,480,'_wp_attached_file','2022/05/placeholder-533.png'),(2737,480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-533.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-533-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-533-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-533-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-533-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-533-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-533-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-533-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2738,480,'_elementor_source_image_hash','1b56e359d732d0e69f50ef5424c5b46bfa728900'),(2739,481,'_wp_attached_file','2022/05/placeholder-534.png'),(2740,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-534.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-534-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-534-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-534-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-534-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-534-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-534-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-534-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2741,481,'_elementor_source_image_hash','6632928949449240287f681829eecef4eff28151'),(2742,482,'_wp_attached_file','2022/05/placeholder-535.png'),(2743,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-535.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-535-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-535-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-535-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-535-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-535-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-535-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-535-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2744,482,'_elementor_source_image_hash','561125ac9c06b60d0b46c364b91f4ef914eed44b'),(2745,483,'_wp_attached_file','2022/05/placeholder-536.png'),(2746,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-536.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-536-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-536-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-536-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-536-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-536-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-536-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-536-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2747,483,'_elementor_source_image_hash','fc6897702c0a6e28c6b55efb033dfadc98726cef'),(2748,484,'_wp_attached_file','2022/05/placeholder-537.png'),(2749,484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-537.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-537-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-537-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-537-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-537-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-537-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-537-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-537-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2750,484,'_elementor_source_image_hash','bc74783040f18458c6e9cbd5151210f3648e58ff'),(2751,485,'_wp_attached_file','2022/05/placeholder-538.png'),(2752,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-538.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-538-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-538-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-538-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-538-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-538-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-538-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-538-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2753,485,'_elementor_source_image_hash','384c273eb0b1d8d06ce2d14c2d60ce9683f83bd6'),(2754,486,'_wp_attached_file','2022/05/placeholder-539.png'),(2755,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-539.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-539-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-539-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-539-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-539-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-539-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-539-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-539-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2756,486,'_elementor_source_image_hash','222115ba169e6cff53a5547eab4247ae11ec1f17'),(2757,487,'_wp_attached_file','2022/05/placeholder-540.png'),(2758,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-540.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-540-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-540-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-540-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-540-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-540-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-540-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-540-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2759,487,'_elementor_source_image_hash','83bc828dc3eb354892235274a6e27de3b841dd30'),(2760,488,'_wp_attached_file','2022/05/placeholder-541.png'),(2761,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-541.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-541-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-541-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-541-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-541-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-541-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-541-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-541-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2762,488,'_elementor_source_image_hash','195d83cd0407c34d557d8d818d98048638f939e6'),(2763,489,'_wp_attached_file','2022/05/placeholder-542.png'),(2764,489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-542.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-542-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-542-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-542-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-542-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-542-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-542-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-542-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2765,489,'_elementor_source_image_hash','17e3a029753c870a64c5c5c5e9ff75382e85ecb3'),(2766,490,'_wp_attached_file','2022/05/placeholder-543.png'),(2767,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-543.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-543-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-543-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-543-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-543-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-543-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-543-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-543-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2768,490,'_elementor_source_image_hash','ed047b645a7f80bfdc4a4dff4aa975df165fb439'),(2769,491,'_wp_attached_file','2022/05/placeholder-544.png'),(2770,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-544.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-544-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-544-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-544-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-544-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-544-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-544-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-544-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2771,491,'_elementor_source_image_hash','19d90ec7a185680eb1231fac6894c0bd78e2c708'),(2772,492,'_wp_attached_file','2022/05/placeholder-545.png'),(2773,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-545.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-545-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-545-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-545-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-545-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-545-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-545-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-545-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2774,492,'_elementor_source_image_hash','e295e3e73990ca57a143c5f7211fe0daa3c78fe6'),(2775,493,'_wp_attached_file','2022/05/placeholder-546.png'),(2776,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-546.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-546-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-546-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-546-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-546-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-546-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-546-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-546-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2777,493,'_elementor_source_image_hash','8060eac09b01b2b12df743b40e9f67066e04cb3a'),(2778,494,'_wp_attached_file','2022/05/placeholder-547.png'),(2779,494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-547.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-547-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-547-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-547-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-547-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-547-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-547-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-547-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2780,494,'_elementor_source_image_hash','a0e3bb523314d0be7b41ff47e58a60a6a41ff337'),(2781,495,'_wp_attached_file','2022/05/Donation_img.jpeg'),(2782,495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:533;s:4:\"file\";s:25:\"2022/05/Donation_img.jpeg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Donation_img-300x100.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Donation_img-1024x341.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Donation_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Donation_img-768x256.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"Donation_img-1536x512.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:25:\"Donation_img-585x295.jpeg\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:26:\"Donation_img-1170x533.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:25:\"Donation_img-396x360.jpeg\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Donation_img-1200x400.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2783,495,'_elementor_source_image_hash','b1f52a5d0a43c8e66b5e7f2cd1bbcfa652ecdcad'),(2784,496,'_wp_attached_file','2022/05/placeholder-548.png'),(2785,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-548.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-548-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-548-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-548-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-548-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-548-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-548-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-548-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2786,496,'_elementor_source_image_hash','0e5ea4e0a1e54e9f55340708b4363cfc90e1eee3'),(2787,497,'_wp_attached_file','2022/05/Political.png'),(2788,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:61;s:4:\"file\";s:21:\"2022/05/Political.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2789,497,'_elementor_source_image_hash','685e9acbe72dc83a6372846b8481d3546d708401'),(2790,498,'_wp_attached_file','2022/05/placeholder-549.png'),(2791,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-549.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-549-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-549-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-549-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-549-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-549-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-549-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-549-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2792,498,'_elementor_source_image_hash','f10d3498618e3268e9de8a7670c44aa6e6551eb1'),(2793,499,'_wp_attached_file','2022/05/placeholder-550.png'),(2794,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-550.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-550-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-550-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-550-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-550-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-550-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-550-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-550-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2795,499,'_elementor_source_image_hash','a2d4657ca640350832df96066c3ef89fd78e8368'),(2796,500,'_wp_attached_file','2022/05/placeholder-551.png'),(2797,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-551.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-551-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-551-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-551-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-551-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-551-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-551-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-551-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2798,500,'_elementor_source_image_hash','8ec14097e5cc4c4764f3cb4d51360b036e41d615'),(2799,501,'_wp_attached_file','2022/05/placeholder-552.png'),(2800,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-552.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-552-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-552-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-552-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-552-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-552-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-552-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-552-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2801,501,'_elementor_source_image_hash','ed82ed68d37136d102f4fd82a549d575071da89e'),(2802,502,'_wp_attached_file','2022/05/placeholder-553.png'),(2803,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-553.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-553-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-553-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-553-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-553-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-553-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-553-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-553-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2804,502,'_elementor_source_image_hash','30365db3fce4ac710534b803e7d1ec2690e1c957'),(2805,503,'_wp_attached_file','2022/05/placeholder-554.png'),(2806,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-554.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-554-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-554-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-554-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-554-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-554-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-554-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-554-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2807,503,'_elementor_source_image_hash','86b794cee015f1d2098ee1a5a8ebd218b5799e2b'),(2808,504,'_wp_attached_file','2022/05/Volunteer_img.jpeg'),(2809,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:492;s:4:\"file\";s:26:\"2022/05/Volunteer_img.jpeg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Volunteer_img-300x92.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Volunteer_img-1024x315.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Volunteer_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Volunteer_img-768x236.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Volunteer_img-1536x472.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:26:\"Volunteer_img-585x295.jpeg\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:27:\"Volunteer_img-1170x492.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:26:\"Volunteer_img-396x360.jpeg\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Volunteer_img-1200x369.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2810,504,'_elementor_source_image_hash','3ada8238d7e00470c5a9b40368c66d01917d6491'),(2811,505,'_wp_attached_file','2022/05/placeholder-555.png'),(2812,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-555.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-555-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-555-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-555-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-555-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-555-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-555-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-555-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2813,505,'_elementor_source_image_hash','73d6d1735ff5c5e3e26c748c8054d0ce2475420f'),(2814,506,'_wp_attached_file','2022/05/placeholder-556.png'),(2815,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-556.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-556-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-556-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-556-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-556-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-556-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-556-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-556-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2816,506,'_elementor_source_image_hash','369dc918b0de5cd6a859272909dc8796688a854d'),(2817,507,'_wp_attached_file','2022/05/placeholder-557.png'),(2818,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-557.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-557-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-557-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-557-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-557-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-557-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-557-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-557-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2819,507,'_elementor_source_image_hash','f05d59b0921c3ea5813cbae177c5feacd72cb859'),(2820,508,'_wp_attached_file','2022/05/placeholder-558.png'),(2821,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-558.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-558-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-558-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-558-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-558-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-558-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-558-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-558-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2822,508,'_elementor_source_image_hash','b15603d3526a284fbde3ca9b3d52bf0773551c20'),(2823,509,'_wp_attached_file','2022/05/placeholder-559.png'),(2824,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-559.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-559-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-559-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-559-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-559-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-559-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-559-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-559-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2825,509,'_elementor_source_image_hash','4c3687be96ed25ccf9d99b07fb4bf4e6c2ded548'),(2826,510,'_wp_attached_file','2022/05/placeholder-560.png'),(2827,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-560.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-560-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-560-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-560-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-560-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-560-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-560-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-560-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2828,510,'_elementor_source_image_hash','568e65e067d28b9d748dc79594260a87fb4ffb9a'),(2829,511,'_wp_attached_file','2022/05/placeholder-561.png'),(2830,511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-561.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-561-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-561-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-561-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-561-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-561-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-561-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-561-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2831,511,'_elementor_source_image_hash','564e282d70e4c0853cc3a56c5fbfaa734d638277'),(2832,512,'_wp_attached_file','2022/05/Eventssssss.png'),(2833,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:852;s:4:\"file\";s:23:\"2022/05/Eventssssss.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Eventssssss-300x160.png\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Eventssssss-1024x545.png\";s:5:\"width\";i:1024;s:6:\"height\";i:545;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Eventssssss-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Eventssssss-768x409.png\";s:5:\"width\";i:768;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"Eventssssss-1536x818.png\";s:5:\"width\";i:1536;s:6:\"height\";i:818;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:23:\"Eventssssss-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:24:\"Eventssssss-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:23:\"Eventssssss-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Eventssssss-1200x639.png\";s:5:\"width\";i:1200;s:6:\"height\";i:639;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2834,512,'_elementor_source_image_hash','bd9c88774d7cf94dc5ca2c0656b5301243c99096'),(2835,513,'_wp_attached_file','2022/05/placeholder-562.png'),(2836,513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-562.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-562-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-562-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-562-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-562-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-562-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-562-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-562-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2837,513,'_elementor_source_image_hash','d45daaeec1c2301be448a8ed14e98ba35e7b8614'),(2838,514,'_wp_attached_file','2022/05/left_imagsasase1.png'),(2839,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:603;s:6:\"height\";i:620;s:4:\"file\";s:28:\"2022/05/left_imagsasase1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"left_imagsasase1-292x300.png\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"left_imagsasase1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:28:\"left_imagsasase1-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"left_imagsasase1-603x536.png\";s:5:\"width\";i:603;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:28:\"left_imagsasase1-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2840,514,'_elementor_source_image_hash','ed1fa59ad2bce8728786eeb09f3190c67cf0b113'),(2841,515,'_wp_attached_file','2022/05/placeholder-563.png'),(2842,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-563.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-563-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-563-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-563-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-563-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-563-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-563-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-563-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2843,515,'_elementor_source_image_hash','1b874248f7b409e66b06dfe741039d2e60779a05'),(2844,516,'_wp_attached_file','2022/05/01-1.png'),(2845,516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2022/05/01-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"01-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"01-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:16:\"01-1-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:16:\"01-1-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2846,516,'_elementor_source_image_hash','773631a9fa2ed8e84fd7873ee7619801f52a2258'),(2847,517,'_wp_attached_file','2022/05/02.png'),(2848,517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:14:\"2022/05/02.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:14:\"02-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:14:\"02-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2849,517,'_elementor_source_image_hash','cf772993dc7c4b51b2ee3a8d334bcc3dde0f9cd7'),(2850,518,'_wp_attached_file','2022/05/03.png'),(2851,518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:14:\"2022/05/03.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:14:\"03-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:14:\"03-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2852,518,'_elementor_source_image_hash','8b40dc1973720e682de8d491552717fa130389e9'),(2853,519,'_wp_attached_file','2022/05/partner_img-3-2.png'),(2854,519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:116;s:6:\"height\";i:60;s:4:\"file\";s:27:\"2022/05/partner_img-3-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2855,519,'_elementor_source_image_hash','e4ae4de7f522e9e0b6a70f0c5e63e7db113c55f7'),(2856,520,'_wp_attached_file','2022/05/placeholder-564.png'),(2857,520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-564.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-564-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-564-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-564-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-564-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-564-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-564-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-564-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2858,520,'_elementor_source_image_hash','ceff565f961d8f275a55573032493aea4a915373'),(2859,521,'_wp_attached_file','2022/05/partner_img-6.png'),(2860,521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:183;s:6:\"height\";i:60;s:4:\"file\";s:25:\"2022/05/partner_img-6.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"partner_img-6-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2861,521,'_elementor_source_image_hash','425ed8461a5f2413148bc687e0ffdc9d36437bf4'),(2862,522,'_wp_attached_file','2022/05/placeholder-565.png'),(2863,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-565.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-565-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-565-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-565-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-565-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-565-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-565-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-565-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2864,522,'_elementor_source_image_hash','418cd4e5fb62825cd8495739ddd3e47460496a24'),(2865,523,'_wp_attached_file','2022/05/partner_img-4-2.png'),(2866,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:194;s:6:\"height\";i:60;s:4:\"file\";s:27:\"2022/05/partner_img-4-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"partner_img-4-2-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2867,523,'_elementor_source_image_hash','1d1481519b5aa835611e887a119b7bdf4b1fe65c'),(2868,524,'_wp_attached_file','2022/05/placeholder-566.png'),(2869,524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-566.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-566-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-566-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-566-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-566-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-566-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-566-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-566-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2870,524,'_elementor_source_image_hash','4cf6532fb134d1be1e28570e4f785234062af2ee'),(2871,525,'_wp_attached_file','2022/05/placeholder-567.png'),(2872,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-567.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-567-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-567-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-567-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-567-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-567-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-567-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-567-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2873,525,'_elementor_source_image_hash','c89519c8c1cb0a558e72f79c4b068b3977f2c557'),(2874,526,'_wp_attached_file','2022/05/partner_img-2-2.png'),(2875,526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:193;s:6:\"height\";i:60;s:4:\"file\";s:27:\"2022/05/partner_img-2-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"partner_img-2-2-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2876,526,'_elementor_source_image_hash','f4d997d26fc09949b6af2140c3e0a11c35519648'),(2877,527,'_wp_attached_file','2022/05/placeholder-568.png'),(2878,527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-568.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-568-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-568-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-568-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-568-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-568-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-568-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-568-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2879,527,'_elementor_source_image_hash','e86809d372198edff71a5376823843d8e157e662'),(2880,528,'_wp_attached_file','2022/05/placeholder-569.png'),(2881,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-569.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-569-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-569-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-569-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-569-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-569-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-569-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-569-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2882,528,'_elementor_source_image_hash','ef1948a316d6752461bcb9303df317aa633fbf58'),(2883,529,'_wp_attached_file','2022/05/placeholder-570.png'),(2884,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-570.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-570-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-570-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-570-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-570-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-570-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-570-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-570-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2885,529,'_elementor_source_image_hash','832a2ff40c46f0d5ef407044c01b68f24a12dcaf'),(2886,530,'_wp_attached_file','2022/05/placeholder-571.png'),(2887,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-571.png\";s:5:\"sizes\";a:1:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-571-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2888,531,'_wp_attached_file','2022/05/placeholder-571-1.png'),(2889,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2022/05/placeholder-571-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"placeholder-571-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"placeholder-571-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"placeholder-571-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"placeholder-571-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:29:\"placeholder-571-1-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:30:\"placeholder-571-1-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:29:\"placeholder-571-1-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2890,531,'_elementor_source_image_hash','e091e2e41ab7a1c9f993bdd602a3a670f5727315'),(2891,532,'_wp_attached_file','2022/05/placeholder-572.png'),(2892,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-572.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-572-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-572-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-572-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-572-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-572-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-572-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-572-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2893,532,'_elementor_source_image_hash','1cb45700ed460ec85d82103079cb3649fae0369d'),(2894,533,'_wp_attached_file','2022/05/placeholder-573.png'),(2895,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-573.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-573-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-573-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-573-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-573-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-573-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-573-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-573-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2896,533,'_elementor_source_image_hash','84507ad345383d7d3b189ada90503fcc9bb96a9d'),(2897,534,'_wp_attached_file','2022/05/placeholder-574.png'),(2898,534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-574.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-574-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-574-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-574-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-574-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-574-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-574-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-574-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2899,534,'_elementor_source_image_hash','05c656da47753c36dcd949aea0afd7e4fe39abc9'),(2900,535,'_wp_attached_file','2022/05/placeholder-575.png'),(2901,535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-575.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-575-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-575-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-575-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-575-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-575-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-575-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-575-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2902,535,'_elementor_source_image_hash','d3f177ecf46dabeadd63aecf9ae4779f4ccac793'),(2903,536,'_wp_attached_file','2022/05/placeholder-576.png'),(2904,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-576.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-576-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-576-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-576-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-576-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-576-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-576-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-576-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2905,536,'_elementor_source_image_hash','0f7b041c3864193b956011392bef798f2fc80e43'),(2906,537,'_wp_attached_file','2022/05/ticket-bg_img.jpeg'),(2907,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1037;s:4:\"file\";s:26:\"2022/05/ticket-bg_img.jpeg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"ticket-bg_img-300x194.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"ticket-bg_img-1024x664.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"ticket-bg_img-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"ticket-bg_img-768x498.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"ticket-bg_img-1536x996.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:996;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:26:\"ticket-bg_img-585x295.jpeg\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:27:\"ticket-bg_img-1170x536.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:26:\"ticket-bg_img-396x360.jpeg\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"ticket-bg_img-1200x778.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2908,537,'_elementor_source_image_hash','60109909a59620f96e63b9a546e7934911bee761'),(2909,538,'_wp_attached_file','2022/05/placeholder-577.png'),(2910,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-577.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-577-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-577-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-577-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-577-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-577-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-577-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-577-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2911,538,'_elementor_source_image_hash','5b50bf12991281531a5b061f4a29c0380edc3d69'),(2912,539,'_wp_attached_file','2022/05/placeholder-578.png'),(2913,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-578.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-578-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-578-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-578-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-578-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-578-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-578-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-578-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2914,539,'_elementor_source_image_hash','ec2b3f8705565364819c445d0d9b124023f66219'),(2915,540,'_wp_attached_file','2022/05/placeholder-579.png'),(2916,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-579.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-579-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-579-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-579-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-579-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-579-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-579-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-579-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2917,540,'_elementor_source_image_hash','e30dee983e3ee7954c0f49f19e38f2667f608252'),(2918,541,'_wp_attached_file','2022/05/Event.png'),(2919,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:494;s:4:\"file\";s:17:\"2022/05/Event.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Event-231x300.png\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Event-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:17:\"Event-380x295.png\";s:5:\"width\";i:380;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:17:\"Event-380x360.png\";s:5:\"width\";i:380;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2920,541,'_elementor_source_image_hash','99c02d4ce0c883710817779fda0ef66c63a79308'),(2921,542,'_wp_attached_file','2022/05/location_img-3-1.jpeg'),(2922,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:230;s:4:\"file\";s:29:\"2022/05/location_img-3-1.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"location_img-3-1-300x197.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"location_img-3-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2923,542,'_elementor_source_image_hash','50151c1be73ca435ab7609509064cb4d708ed57d'),(2924,543,'_wp_attached_file','2022/05/placeholder-580.png'),(2925,543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-580.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-580-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-580-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-580-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-580-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-580-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-580-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-580-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2926,543,'_elementor_source_image_hash','7ef81a9410efb2eef4dc625430f304a80865e6cc'),(2929,545,'_wp_attached_file','2022/05/price-pattern2.png'),(2930,545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1493;s:6:\"height\";i:854;s:4:\"file\";s:26:\"2022/05/price-pattern2.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"price-pattern2-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"price-pattern2-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"price-pattern2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"price-pattern2-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:26:\"price-pattern2-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:27:\"price-pattern2-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:26:\"price-pattern2-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"price-pattern2-1200x686.png\";s:5:\"width\";i:1200;s:6:\"height\";i:686;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2931,545,'_elementor_source_image_hash','6d6b59d5cd8c8468a423649888cfcac82391444e'),(2932,546,'_elementor_edit_mode','builder'),(2933,546,'_elementor_template_type','wp-page'),(2934,546,'_elementor_version','3.6.5'),(2935,546,'_elementor_pro_version','3.6.4'),(2936,546,'_wp_page_template','elementor_canvas'),(2937,546,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2938,546,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2939,546,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2940,547,'_elementor_edit_mode','builder'),(2941,547,'_elementor_template_type','wp-page'),(2942,547,'_elementor_version','3.6.5'),(2943,547,'_elementor_pro_version','3.6.4'),(2944,547,'_wp_page_template','elementor_canvas'),(2945,547,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2946,547,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2947,547,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2948,548,'_elementor_edit_mode','builder'),(2949,548,'_elementor_template_type','wp-page'),(2950,548,'_elementor_version','3.6.5'),(2951,548,'_elementor_pro_version','3.6.4'),(2952,548,'_wp_page_template','elementor_canvas'),(2953,548,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2954,548,'_elementor_data','[{\"id\":\"59706ffc\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"f63dff2\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"7fcdebf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"6d7b34f\"}]},\"elements\":[{\"id\":\"62bb3886\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"0d3af49\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"65c978f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"aff85cb\"}]},\"elements\":[{\"id\":\"1c02435b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"2739a18\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"208b5bfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"9f0a023\"}]},\"elements\":[{\"id\":\"6b38a3cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"2c7f254\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15d5a592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"1ce393b\"}]},\"elements\":[{\"id\":\"1b588acf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d16ad5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a640dcc\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"479af54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"b47d748\"}]},\"elements\":[{\"id\":\"5ecf0b84\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"017abf3\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7f4c0cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"87a547f\"}]},\"elements\":[{\"id\":\"4ea269e3\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"5fb69447\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"34c34a8\"}]},\"elements\":[{\"id\":\"5f1a69d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33746664\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"b6e2539\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6cf87cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"c571aa9\"}]},\"elements\":[{\"id\":\"15185d14\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"bb79353\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6031d603\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"155c1ea\"}]},\"elements\":[{\"id\":\"158e99cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Milestone\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"e7f78ce\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"503b0582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"33af518\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb98a83\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"cff0bb6\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"28cefe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"7f56773\"}]},\"elements\":[{\"id\":\"a2ad86d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"e22fe5d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6f41aa38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"321f278\"}]},\"elements\":[{\"id\":\"3426d30a\",\"elType\":\"widget\",\"settings\":{\"ekit_timelinehr_content_repeater\":[{\"ekit_timeline_line_title\":\"Establishment as an NGO Aahan Tribal Development Foundation\",\"ekit_timeline_line_content\":\"\",\"_id\":\"75bbf85\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2013\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"}},{\"ekit_timeline_line_title\":\"Mentoring Walk\",\"ekit_timeline_line_content\":\"Mentoring Walk, where we brought tribal girls and matched them with their mentors. It was our first partnership program with Vital Voices and DFID. It was a unique program for the stakeholders and led to several such walks in the coming years.\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2014\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"f81ff46\"},{\"ekit_timeline_line_title\":\"Mentorship Programs\",\"ekit_timeline_line_content\":\"Launched mentorship program for emerging change-makers, who were coming from all walks of life; students to Panchayat leaders.\\n\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2016\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"4dddf99\"},{\"ekit_timeline_line_title\":\"Formation of Aahan Bravehearts\",\"ekit_timeline_line_content\":\"National level football player Rupanti Munda represented India in Homeless Soccer World Cup in Oslo, Norwa\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2017\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"9552864\"},{\"ekit_timeline_line_title\":\"Young Ambassadors Program\",\"ekit_timeline_line_content\":\"Launch of Young Ambassadors Program.\\n& Joint Art Exhibition of Aahan Fellow Arti Munda and Aahan Ambassador Jannat Arora in Delhi.\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2018\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"4bb4252\"},{\"ekit_timeline_line_title\":\"Name changed to Aahan Foundation for Social Change.\",\"ekit_timeline_line_content\":\"Name changed to Aahan Foundation for Social Change from Aahan Tribal Development Foundation.\\nStarted a centre in Jaratoli village of Jonha panchayat to provide foundational learning, digital literacy, trauma healing etc.\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2019\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"bd53eec\"},{\"ekit_timeline_line_title\":\"Covid Relief Program\",\"ekit_timeline_line_content\":\"Covid 19 relief programs in the tribal regions.\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2020\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"de2d365\"},{\"ekit_timeline_line_title\":\"Affiliation of two football clubs with AIFF\",\"ekit_timeline_line_content\":\"Affiliation of two football clubs with All India Football Federation (AIFF) comprising players who are survivors of GBV\\n\\n\\n\",\"ekit_timeline_line_subtitle\":\"\",\"ekit_timeline_title_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_content_date\":\"2021\",\"ekit_timeline_date_link\":{\"url\":\"\",\"is_external\":\"1\",\"nofollow\":\"1\",\"custom_attributes\":\"\"},\"ekit_timeline_date_icon\":\"\",\"ekit_timelinehr_content_address\":\"\",\"ekit_timelinehr_address_icon\":\"\",\"ekit_timelinehr_bg_icon\":\"icon icon-product-top-seller\",\"ekit_timeline_left_entrance_animation\":\"\",\"ekit_timeline_right_entrance_animation\":\"fadeIn\",\"ekit_timelinearrow_color_1\":\"#ffffff\",\"ekit_timelinearrow_color_2\":\"\",\"ekit_timelinearrow_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_background\":\"classic\",\"ekit_timeline_item_background_color_group_color\":\"\",\"ekit_timeline_item_background_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_color_b\":\"#f2295b\",\"ekit_timeline_item_background_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background_color_group_position\":\"\",\"ekit_timeline_item_background_color_group_position_tablet\":\"\",\"ekit_timeline_item_background_color_group_position_mobile\":\"\",\"ekit_timeline_item_background_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_attachment\":\"\",\"ekit_timeline_item_background_color_group_repeat\":\"\",\"ekit_timeline_item_background_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background_color_group_size\":\"\",\"ekit_timeline_item_background_color_group_size_tablet\":\"\",\"ekit_timeline_item_background_color_group_size_mobile\":\"\",\"ekit_timeline_item_background_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background_color_group_video_link\":\"\",\"ekit_timeline_item_background_color_group_video_start\":\"\",\"ekit_timeline_item_background_color_group_video_end\":\"\",\"ekit_timeline_item_background_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_group_color\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_color_b\":\"0acbf5 \",\"ekit_timeline_item_icon_bg_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"160\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_background\":\"classic\",\"ekit_timeline_item_background__hv_color_group_color\":\"#ff007a\",\"ekit_timeline_item_background__hv_color_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_color_b\":\"#82e182\",\"ekit_timeline_item_background__hv_color_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_type\":\"linear\",\"ekit_timeline_item_background__hv_color_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"-35\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_gradient_position\":\"center center\",\"ekit_timeline_item_background__hv_color_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_background__hv_color_group_position\":\"\",\"ekit_timeline_item_background__hv_color_group_position_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_position_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_attachment\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_repeat_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_size\":\"\",\"ekit_timeline_item_background__hv_color_group_size_tablet\":\"\",\"ekit_timeline_item_background__hv_color_group_size_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_background__hv_color_group_video_link\":\"\",\"ekit_timeline_item_background__hv_color_group_video_start\":\"\",\"ekit_timeline_item_background__hv_color_group_video_end\":\"\",\"ekit_timeline_item_background__hv_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_color_hv\":\"#ff007a\",\"ekit_timeline_item_icon_bg_color_hv_group_background\":\"classic\",\"ekit_timeline_item_icon_bg_color_hv_group_color\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_color_b\":\"#ffffff\",\"ekit_timeline_item_icon_bg_color_hv_group_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_type\":\"linear\",\"ekit_timeline_item_icon_bg_color_hv_group_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_gradient_position\":\"center center\",\"ekit_timeline_item_icon_bg_color_hv_group_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"ekit_timeline_item_icon_bg_color_hv_group_position\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_position_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_attachment\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_repeat_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_tablet\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_size_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_bg_color_hv_group_video_link\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_start\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_end\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_timelinearrow_subtitle_color_hover\":\"#ffffff\",\"ekit_timelinearrow_color_1_hover\":\"#ff007a\",\"ekit_timelinearrow_color_2_hover\":\"\",\"ekit_timelinearrow_subtitle_color_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_mobile\":\"\",\"ekit_timelinearrow_color_1_tablet\":\"\",\"ekit_timelinearrow_color_1_mobile\":\"\",\"ekit_timelinearrow_color_2_tablet\":\"\",\"ekit_timelinearrow_color_2_mobile\":\"\",\"ekit_timelinearrow_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timelinearrow_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_timeline_item_icon_color_tablet\":\"\",\"ekit_timeline_item_icon_color_mobile\":\"\",\"ekit_timelinearrow_subtitle_color_hover_tablet\":\"\",\"ekit_timelinearrow_subtitle_color_hover_mobile\":\"\",\"ekit_timelinearrow_color_1_hover_tablet\":\"\",\"ekit_timelinearrow_color_1_hover_mobile\":\"\",\"ekit_timelinearrow_color_2_hover_tablet\":\"\",\"ekit_timelinearrow_color_2_hover_mobile\":\"\",\"ekit_timeline_item_icon_color_hv_tablet\":\"\",\"ekit_timeline_item_icon_color_hv_mobile\":\"\",\"ekit_timeline_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timeline_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_address_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_timelinehr_bg_icons\":{\"value\":\"icon icon-trophy\",\"library\":\"ekiticons\"},\"ekit_timeline_item_background_color_group_play_once\":\"\",\"ekit_timeline_item_background_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_background__hv_color_group_play_once\":\"\",\"ekit_timeline_item_background__hv_color_group_play_on_mobile\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_gallery\":[],\"ekit_timeline_item_background__hv_color_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_background__hv_color_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_background__hv_color_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_background__hv_color_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group_play_once\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_play_on_mobile\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_gallery\":[],\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_loop\":\"yes\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_duration\":\"5000\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_slide_transition\":\"fade\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_transition_duration\":\"500\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns\":\"\",\"ekit_timeline_item_icon_bg_color_hv_group_slideshow_ken_burns_zoom_direction\":\"in\",\"ekit_timeline_item_icon_bg_color_hv_group\":\"#FFFFFF\",\"__fa4_migrated\":{\"ekit_timeline_title_icons\":\"1\"},\"__globals__\":{\"ekit_timeline_item_background__hv_color_group\":\"globals\\/colors?id=primary\",\"ekit_timelinearrow_subtitle_color\":\"globals\\/colors?id=secondary\"},\"_id\":\"5faf2c7\"}],\"ekit_timeline_content_title_color_hv\":\"#ffffff\",\"ekit_timeline_content_color_hv\":\"#ffffff\",\"ekit_timeline__container_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_timeline_content__sub_title_typography_typography\":\"custom\",\"ekit_timeline_content__sub_title_typography_font_family\":\"Roboto\",\"ekit_timeline_content__sub_title_typography_font_weight\":\"400\",\"ekit_timeline_content_title_typography_typography\":\"custom\",\"ekit_timeline_content_title_typography_font_family\":\"Montserrat\",\"ekit_timeline_content_title_typography_font_weight\":\"700\",\"ekit_timeline_content_typography_typography\":\"custom\",\"ekit_timeline_content_typography_font_family\":\"Roboto\",\"ekit_timeline_content_typography_font_weight\":\"400\",\"ekit_timeline_icon_address_typography_typography\":\"custom\",\"ekit_timeline_icon_address_typography_font_family\":\"Roboto\",\"ekit_timeline_icon_address_typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"3d59a97\"}],\"ekit_timeline_left_entrance_animation\":\"fadeIn\",\"ekit_timeline__container_inner_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ekit_timeline_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_timeline_icon_date_icon_size\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"ekit_timeline_icon_date_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_timeline_icon_address_icon_size\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"ekit_timeline__item_margin_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_timeline_pin_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_pin_hover_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_line_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_pin_active_border_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_content_title_color\":\"globals\\/colors?id=primary\",\"ekit_timeline_icon_color\":\"globals\\/colors?id=text\",\"ekit_timeline_item_icon_bg_color_group\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-timeline\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d93d221\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"87fed08\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"179fd6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"ffbab13\"}]},\"elements\":[{\"id\":\"11be8a3c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"226b0fd\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"248e67e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"56065df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"d0b1f79\"}]},\"elements\":[{\"id\":\"6a838ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"7461e99\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f774cf8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"5715a56e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"233f7d3\"}]},\"elements\":[{\"id\":\"666fab4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"003d317\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58491b4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"1a16299\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c0ee24\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6201f206\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bb6928e\"}]},\"elements\":[{\"id\":\"6f73b3d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"b799666\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3b5940\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2b1e18\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"f8e33fc\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"31f65012\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"202d7b3\"}]},\"elements\":[{\"id\":\"1ef6a9a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2955,548,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2956,11,'ht_page_views_count','3'),(2957,15,'ht_page_views_count','3'),(2958,413,'ht_page_views_count','2'),(2959,411,'ht_page_views_count','3'),(2960,413,'_elementor_css','a:6:{s:4:\"time\";i:1652933134;s:5:\"fonts\";a:10:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:4:\"Lato\";i:5;s:5:\"Heebo\";i:7;s:7:\"Archivo\";i:15;s:6:\"Roboto\";i:20;s:4:\"Muli\";i:21;s:14:\"Odor Mean Chey\";i:23;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"439b0a9e\";i:1;s:8:\"439b0a9e\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2961,415,'_elementor_css','a:6:{s:4:\"time\";i:1652933180;s:5:\"fonts\";a:7:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:6:\"Roboto\";i:12;s:4:\"Muli\";i:13;s:14:\"Odor Mean Chey\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"5ecf0b84\";i:1;s:8:\"5ecf0b84\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2962,17,'ht_page_views_count','2'),(2963,17,'_elementor_css','a:6:{s:4:\"time\";i:1652933187;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:9;s:9:\"ekiticons\";i:13;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"33ec286c\";i:1;s:8:\"33ec286c\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2964,19,'ht_page_views_count','0'),(2965,21,'ht_page_views_count','0'),(2966,23,'ht_page_views_count','0'),(2967,25,'ht_page_views_count','0'),(2968,29,'ht_page_views_count','1'),(2969,549,'_elementor_edit_mode','builder'),(2970,549,'_elementor_template_type','wp-page'),(2971,549,'_elementor_version','3.6.5'),(2972,549,'_elementor_pro_version','3.6.4'),(2973,549,'_wp_page_template','elementor_canvas'),(2974,549,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2975,549,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2976,549,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2977,549,'_elementor_css','a:6:{s:4:\"time\";i:1652874537;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2978,550,'_elementor_edit_mode','builder'),(2979,550,'_elementor_template_type','wp-page'),(2980,550,'_elementor_version','3.6.5'),(2981,550,'_elementor_pro_version','3.6.4'),(2982,550,'_wp_page_template','elementor_canvas'),(2983,550,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2984,550,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2985,550,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2986,550,'_elementor_css','a:6:{s:4:\"time\";i:1652874537;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2987,551,'_elementor_edit_mode','builder'),(2988,551,'_elementor_template_type','wp-page'),(2989,551,'_elementor_version','3.6.5'),(2990,551,'_elementor_pro_version','3.6.4'),(2991,551,'_wp_page_template','elementor_canvas'),(2992,551,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2993,551,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(2994,551,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(2995,551,'_elementor_css','a:6:{s:4:\"time\";i:1652874537;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2997,552,'_elementor_edit_mode','builder'),(2998,552,'_elementor_template_type','wp-page'),(2999,552,'_elementor_version','3.6.5'),(3000,552,'_elementor_pro_version','3.6.4'),(3001,552,'_wp_page_template','elementor_canvas'),(3002,552,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3003,552,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3004,552,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3005,552,'_elementor_css','a:6:{s:4:\"time\";i:1652933279;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3006,553,'_elementor_edit_mode','builder'),(3007,553,'_elementor_template_type','wp-page'),(3008,553,'_elementor_version','3.6.5'),(3009,553,'_elementor_pro_version','3.6.4'),(3010,553,'_wp_page_template','elementor_canvas'),(3011,553,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3012,553,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3013,553,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3014,553,'_elementor_css','a:6:{s:4:\"time\";i:1652933279;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3015,554,'_elementor_edit_mode','builder'),(3016,554,'_elementor_template_type','wp-page'),(3017,554,'_elementor_version','3.6.5'),(3018,554,'_elementor_pro_version','3.6.4'),(3019,554,'_wp_page_template','elementor_canvas'),(3020,554,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3021,554,'_elementor_data','[{\"id\":\"2afa4684\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5cb48fda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"69aee9d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"284b105b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c01b0bf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"63d2c3c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51022c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1adf96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59b79d4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"82d0e04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ff033e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\"},\"elements\":[{\"id\":\"23d65eb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"60ee2957\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a805fe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"4c3334ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcce4ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43c2b9db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/cropped-cropped-Aahan-logo-1.webp\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4165cd43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16a3b43\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4ffb59be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"3626e6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"275f71bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e28d3b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.08000000000000000166533453693773481063544750213623046875,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"762d6841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a25d5bb\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/group-of-volunteer-forming-huddles.jpg\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":39,\"unit\":\"px\"},\"_offset_y\":{\"size\":159,\"unit\":\"px\"},\"animation_duration\":\"slow\",\"_offset_x_tablet\":{\"size\":27,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":389,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":38,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70cecbf3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c753714\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_title_align\":\"left\",\"ekit_video_popup_btn_glow_color\":\"#FFFFFF00\",\"ekit_video_popup_btn_text_color\":\"#252425\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#FCBC45\",\"ekit_video_popup_btn_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_video_popup_btn_border_color\":\"#FD9E01\",\"_element_width\":\"auto\",\"__globals__\":{\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\",\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_border_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_hover_color\":\"\"},\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#FCBC45\",\"_z_index\":0,\"animation_duration\":\"slow\",\"_animation_delay\":10,\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_video_popup_btn_hover_color\":\"#252425\",\"ekit_video_popup_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_x\":{\"size\":405,\"unit\":\"px\"},\"_offset_y\":{\"size\":84,\"unit\":\"px\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":false},{\"id\":\"5e7bbb97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"150adbf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2018Aahan\\u2019 means \\u2018New Dawn\\u2019 in Hindi\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"687c4c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f882f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Support people in extreme need\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"5d0a867\"},{\"text\":\"Largest global crowdfunding community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"b0ea78c\"},{\"text\":\"Make the world a better place\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fbb273b\"},{\"text\":\"Share your love for community\",\"selected_icon\":{\"value\":\"icon icon-checked1\",\"library\":\"ekiticons\"},\"_id\":\"fd757f9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#6F747E\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"__globals__\":{\"icon_color\":\"\"},\"animation_duration\":\"slow\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"26c7c6d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e586754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.01400000000000289901436190120875835418701171875,\"content_position\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCBC45\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":85,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e6b0dd2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Money-2\",\"library\":\"ekiticons\"},\"primary_color\":\"#252425\",\"size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"49a2b67e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"none\",\"ekit_funfact_number\":\"70458\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successfull Campaigns\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_text_align\":\"left\",\"ekit_funfact_description_color\":\"#252425\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Noto Serif\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"600\",\"ekit_funfact_number_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_funfact_title_color\":\"#252425\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Heebo\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_funfact_title_typography_font_weight\":\"300\",\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false,\"size\":15},\"_element_width\":\"auto\",\"__globals__\":{\"ekit_funfact_description_color\":\"\",\"ekit_funfact_title_color\":\"\"},\"ekit_funfact_icon_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"36e6ccca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.89099999999999823785401531495153903961181640625,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7335fc47\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"z_index\":0,\"__globals__\":{\"background_color\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"37\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Hands.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14404e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"em\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5f2d3576\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4908ed21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Empowerment \\u2013 a process of change\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ff8f80b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua\",\"text_color\":\"#6F747E\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa88726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"687161e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ce0b3a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-drop\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Clean Water\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"1793d0c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd7c246\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-vegetables\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Healthy Food\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"37e460e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ca989\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-medicine\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Medical Help\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"6f9a26ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16024be5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-open-book1\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Proper Education\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF00\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_primary_color\":\"#252425\",\"ekit_icon_box_icon_secondary_color_normal\":\"#FCBC45\",\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"\",\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_description_color\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=ffbaf7c\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#6F747E\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_header_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"},\"ekit_icon_box_show_image\":{\"id\":\"158\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33fcac7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"22313ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1415e84f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Purpose\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c79e3fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"To see every girl child equipped to live free from exploitation, discrimination and inequality\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c53d536\",\"typography_typography\":\"globals\\/typography?id=text\",\"_background_color\":\"globals\\/colors?id=primary\"},\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47476410\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"z_index\":3,\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"538c3239\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"1d86a00\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHY\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"605ca6df\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3966f5\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"67271159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"9d03d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"f5b9874\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"HOW\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"4b3d8e4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283abb2\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"c8b1af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"464ab16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"4bc5400\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_infobox_title\":\"WHAT\",\"eael_infobox_title_tag\":\"h2\",\"eael_infobox_text\":\"\",\"eael_show_infobox_clickable\":\"\",\"infobox_button_text\":\"Click Me!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"eael_infobox_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-info-box\"},{\"id\":\"f7f49bf\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":3},\"width\":{\"unit\":\"px\",\"size\":66},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text\":\"Divider\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"530b5dd\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"-61\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-street-view\",\"shape\":\"square\",\"selected_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"488edbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We empower girls to be change leaders<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"eaa11ff\",\"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\":\"12\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca6a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where we work\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4070aaf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/2.png\",\"id\":361,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3db97ed0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30bf415c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"652df36d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9dbf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"65a144b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b6b0fe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6407e18\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"360554f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a61b512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"308e1ce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0e4dc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"5b792689\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c7a60fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfde80\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a28e2e4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"327ec692\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a6906d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3022,554,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3023,554,'_elementor_css','a:6:{s:4:\"time\";i:1652933279;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3024,555,'_edit_lock','1652944847:1'),(3025,557,'_edit_lock','1652944785:1'),(3026,559,'_edit_lock','1652940475:1'),(3027,561,'_edit_lock','1652941046:1'),(3028,563,'_edit_lock','1652943801:1'),(3029,565,'_menu_item_type','post_type'),(3030,565,'_menu_item_menu_item_parent','76'),(3031,565,'_menu_item_object_id','563'),(3032,565,'_menu_item_object','page'),(3033,565,'_menu_item_target',''),(3034,565,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3035,565,'_menu_item_xfn',''),(3036,565,'_menu_item_url',''),(3038,566,'_menu_item_type','post_type'),(3039,566,'_menu_item_menu_item_parent','76'),(3040,566,'_menu_item_object_id','561'),(3041,566,'_menu_item_object','page'),(3042,566,'_menu_item_target',''),(3043,566,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3044,566,'_menu_item_xfn',''),(3045,566,'_menu_item_url',''),(3047,567,'_menu_item_type','post_type'),(3048,567,'_menu_item_menu_item_parent','76'),(3049,567,'_menu_item_object_id','559'),(3050,567,'_menu_item_object','page'),(3051,567,'_menu_item_target',''),(3052,567,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3053,567,'_menu_item_xfn',''),(3054,567,'_menu_item_url',''),(3056,568,'_menu_item_type','post_type'),(3057,568,'_menu_item_menu_item_parent','76'),(3058,568,'_menu_item_object_id','557'),(3059,568,'_menu_item_object','page'),(3060,568,'_menu_item_target',''),(3061,568,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3062,568,'_menu_item_xfn',''),(3063,568,'_menu_item_url',''),(3065,569,'_menu_item_type','post_type'),(3066,569,'_menu_item_menu_item_parent','76'),(3067,569,'_menu_item_object_id','555'),(3068,569,'_menu_item_object','page'),(3069,569,'_menu_item_target',''),(3070,569,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3071,569,'_menu_item_xfn',''),(3072,569,'_menu_item_url',''),(3074,77,'_wp_old_date','2022-05-18'),(3075,444,'_wp_old_date','2022-05-18'),(3076,443,'_wp_old_date','2022-05-18'),(3077,442,'_wp_old_date','2022-05-18'),(3078,76,'_wp_old_date','2022-05-18'),(3079,75,'_wp_old_date','2022-05-18'),(3080,74,'_wp_old_date','2022-05-18'),(3081,73,'_wp_old_date','2022-05-18'),(3082,72,'_wp_old_date','2022-05-18'),(3083,71,'_wp_old_date','2022-05-18'),(3084,70,'_wp_old_date','2022-05-18'),(3085,555,'_elementor_edit_mode','builder'),(3086,555,'_elementor_template_type','wp-page'),(3087,555,'_elementor_version','3.6.5'),(3088,555,'_elementor_pro_version','3.6.4'),(3089,555,'ht_page_views_count','1'),(3098,571,'_wp_attached_file','2022/05/placeholder-169.png'),(3099,571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2022/05/placeholder-169.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-169-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-169-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-169-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"placeholder-169-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:27:\"placeholder-169-585x295.png\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:28:\"placeholder-169-1170x536.png\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:27:\"placeholder-169-396x360.png\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3100,571,'_elementor_source_image_hash','b7c363f736c9090ada3dd39503bc89231ed6cca9'),(3101,572,'_elementor_edit_mode','builder'),(3102,572,'_elementor_template_type','wp-page'),(3103,572,'_elementor_version','3.6.5'),(3104,572,'_elementor_pro_version','3.6.4'),(3105,573,'_elementor_edit_mode','builder'),(3106,573,'_elementor_template_type','wp-page'),(3107,573,'_elementor_version','3.6.5'),(3108,573,'_elementor_pro_version','3.6.4'),(3109,555,'_wp_page_template','elementor_canvas'),(3110,555,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (3111,555,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18147f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click to read our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3112,574,'_elementor_edit_mode','builder'),(3113,574,'_elementor_template_type','wp-page'),(3114,574,'_elementor_version','3.6.5'),(3115,574,'_elementor_pro_version','3.6.4'),(3116,574,'_wp_page_template','elementor_canvas'),(3117,574,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3118,574,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4620155\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"primary_color\":\"#ED6421DB\",\"ekit_all_conditions_list\":[{\"_id\":\"e38ddae\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"7dae04c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"ekit_all_conditions_list\":[{\"_id\":\"e38ddae\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3119,555,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3120,575,'_elementor_edit_mode','builder'),(3121,575,'_elementor_template_type','wp-page'),(3122,575,'_elementor_version','3.6.5'),(3123,575,'_elementor_pro_version','3.6.4'),(3124,575,'_wp_page_template','elementor_canvas'),(3125,575,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3126,575,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4620155\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"primary_color\":\"#ED6421DB\",\"ekit_all_conditions_list\":[{\"_id\":\"e38ddae\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"7dae04c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"ekit_all_conditions_list\":[{\"_id\":\"e38ddae\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3127,575,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3128,576,'_elementor_edit_mode','builder'),(3129,576,'_elementor_template_type','wp-page'),(3130,576,'_elementor_version','3.6.5'),(3131,576,'_elementor_pro_version','3.6.4'),(3132,576,'_wp_page_template','elementor_canvas'),(3133,576,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3134,576,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4620155\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"primary_color\":\"#ED6421DB\",\"ekit_all_conditions_list\":[{\"_id\":\"e38ddae\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"7dae04c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-quote1\",\"library\":\"ekiticons\"},\"size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":903,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-21.7590000000000003410605131648480892181396484375,\"unit\":\"%\"},\"_offset_y\":{\"size\":7,\"unit\":\"px\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=primary\"},\"_offset_x_end_mobile\":{\"size\":-0.4859999999999999875655021241982467472553253173828125,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-73.993999999999999772626324556767940521240234375,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_offset_x_end_tablet\":{\"size\":-15.477000000000000312638803734444081783294677734375,\"unit\":\"%\"},\"_offset_y_tablet\":{\"size\":-12.9719999999999995310417943983338773250579833984375,\"unit\":\"px\"},\"ekit_all_conditions_list\":[{\"_id\":\"e38ddae\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our success stories\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3135,576,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3136,577,'_elementor_edit_mode','builder'),(3137,577,'_elementor_template_type','wp-page'),(3138,577,'_elementor_version','3.6.5'),(3139,577,'_elementor_pro_version','3.6.4'),(3140,577,'_wp_page_template','elementor_canvas'),(3141,577,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3142,577,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18147f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click to read our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3143,577,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3144,578,'_elementor_edit_mode','builder'),(3145,578,'_elementor_template_type','wp-page'),(3146,578,'_elementor_version','3.6.5'),(3147,578,'_elementor_pro_version','3.6.4'),(3148,578,'_wp_page_template','elementor_canvas'),(3149,578,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3150,578,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18147f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click to read our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3151,578,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3152,579,'_elementor_edit_mode','builder'),(3153,579,'_elementor_template_type','wp-page'),(3154,579,'_elementor_version','3.6.5'),(3155,579,'_elementor_pro_version','3.6.4'),(3156,579,'_wp_page_template','elementor_canvas'),(3157,579,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3158,579,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18147f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click to read our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3159,579,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3160,580,'_elementor_edit_mode','builder'),(3161,580,'_elementor_template_type','wp-page'),(3162,580,'_elementor_version','3.6.5'),(3163,580,'_elementor_pro_version','3.6.4'),(3164,580,'_wp_page_template','elementor_canvas'),(3165,580,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3166,580,'_elementor_data','[{\"id\":\"6c18992f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"envato-101-header\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3d7deed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"4fecd52e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52e819e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"23eb8fa4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7602b63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"1965376f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61c811e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"3108f4a9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2125e74d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"12490879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"782a5b53\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6a32b26e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"4c106f27\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"60309ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"84b99d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fcadba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"523929a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"31edc69e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f18675d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"195ebd14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Awareness\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"58a1e499\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cec18d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a009b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"33b237b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aahan Program Awareness: Collective action through Awareness, Community and Network Building\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18147f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb098cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.<\\/p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.<\\/p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dec03a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"494ae4f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_accor_gradient_color\",\"ekit_all_conditions_list\":[{\"_id\":\"355c8db\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90eca26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"f231342\"}]},\"elements\":[{\"id\":\"cd0b1e7\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Community Participation\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"923737c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"15f2715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"97f179a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"a220a4c\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"43e6418\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"35cc4e24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"baaa2c3\"}],\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769fa105\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Aahan awareness programme focuses on :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Awareness of the need and importance of education, hygiene and healthcare<\\/li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.<\\/li><\\/ul>\"},{\"acc_title\":\"Some of our community awareness activities:\",\"_id\":\"8417e71\",\"acc_content\":\"<p>Creating awareness about child rights, safety and child labour<br \\/>\\u2022 Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br \\/>\\u2022 Gender awareness workshops with self-help groups, in schools and at the community level<br \\/>\\u2022 Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br \\/>\\u2022 Awareness workshop for parents, creation of male champions and support groups.<br \\/>\\u2022 Conducting workshop to explain the child right and basic related laws in local language<br \\/>\\u2022 Running campaigns at village level against girl trafficking and Child Marriage<\\/p>\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"b156b0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a895925\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"f5f3c44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1026889\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"793b5cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"f107f53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click to read our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19e46c68\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5e324c36\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"143aab16\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"258cd75a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"258a1780\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"295118f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"594a0867\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"3c89f6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"4fe69773\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff07e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263516ac\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"6f42b3ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"2fabfc6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4100290d\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9e6782\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2200c058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"224b803f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3167,580,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3168,557,'_elementor_edit_mode','builder'),(3169,557,'_elementor_template_type','wp-page'),(3170,557,'_elementor_version','3.6.5'),(3171,557,'_elementor_pro_version','3.6.4'),(3172,557,'ht_page_views_count','1'),(3181,582,'_elementor_edit_mode','builder'),(3182,582,'_elementor_template_type','wp-page'),(3183,582,'_elementor_version','3.6.5'),(3184,582,'_elementor_pro_version','3.6.4'),(3185,583,'_elementor_edit_mode','builder'),(3186,583,'_elementor_template_type','wp-page'),(3187,583,'_elementor_version','3.6.5'),(3188,583,'_elementor_pro_version','3.6.4'),(3189,557,'_wp_page_template','elementor_canvas'),(3190,557,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3191,557,'_elementor_data','[{\"id\":\"e7ef29f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"da572e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"bf16190\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f376fd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"600a2c5\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"0c66ff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"8fc767c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8937921\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"afe56f5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a696c9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"098929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"259b374\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"e545619\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"e1e4a24\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"2e73065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"276ac5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762296b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1ba47ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"894d6dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e9aa98f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"69d0fa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Education\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d7bfb0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c249fe1\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3c58c5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"159417d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69785e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2eafaf4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fc5c79d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"c97d9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f103f91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c0c0179\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e4e59ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"8652330\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"904d705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f49642\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"4be6c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12ca202\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"e85b2b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9c3e1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"868ac7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b281ec8\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ac5e70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"34e1f45\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a523471\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8590dd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"6066728\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3819e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"281484e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"92cee70\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6722fcf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c01af6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"d6b730e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a740e36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19b264d\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"d57786d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"46eff11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd7c6cd\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4715fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1026138\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"00e1696\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3192,584,'_elementor_edit_mode','builder'),(3193,584,'_elementor_template_type','wp-page'),(3194,584,'_elementor_version','3.6.5'),(3195,584,'_elementor_pro_version','3.6.4'),(3196,584,'_wp_page_template','elementor_canvas'),(3197,584,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3198,584,'_elementor_data','[{\"id\":\"e7ef29f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"da572e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"bf16190\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f376fd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"600a2c5\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"0c66ff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"8fc767c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8937921\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"afe56f5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a696c9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"098929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"259b374\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"e545619\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"e1e4a24\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"2e73065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"276ac5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762296b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1ba47ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"894d6dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e9aa98f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"69d0fa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Education\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d7bfb0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c249fe1\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3c58c5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"159417d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69785e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2eafaf4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fc5c79d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"c97d9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f103f91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c0c0179\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e4e59ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"8652330\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"904d705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f49642\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"4be6c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12ca202\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"e85b2b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9c3e1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"868ac7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b281ec8\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"ac5e70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"34e1f45\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a523471\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8590dd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"6066728\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3819e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"281484e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"92cee70\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6722fcf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c01af6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"d6b730e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a740e36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19b264d\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"d57786d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"46eff11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd7c6cd\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4715fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1026138\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"00e1696\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3199,557,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3200,559,'_elementor_edit_mode','builder'),(3201,559,'_elementor_template_type','wp-page'),(3202,559,'_elementor_version','3.6.5'),(3203,559,'_elementor_pro_version','3.6.4'),(3204,559,'ht_page_views_count','1'),(3213,555,'_elementor_css','a:6:{s:4:\"time\";i:1652939820;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"782a5b53\";i:1;s:8:\"782a5b53\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3214,586,'_elementor_edit_mode','builder'),(3215,586,'_elementor_template_type','wp-page'),(3216,586,'_elementor_version','3.6.5'),(3217,586,'_elementor_pro_version','3.6.4'),(3218,587,'_elementor_edit_mode','builder'),(3219,587,'_elementor_template_type','wp-page'),(3220,587,'_elementor_version','3.6.5'),(3221,587,'_elementor_pro_version','3.6.4'),(3222,559,'_wp_page_template','elementor_canvas'),(3223,559,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3224,559,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"300\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3225,588,'_elementor_edit_mode','builder'),(3226,588,'_elementor_template_type','wp-page'),(3227,588,'_elementor_version','3.6.5'),(3228,588,'_elementor_pro_version','3.6.4'),(3229,588,'_wp_page_template','elementor_canvas'),(3230,588,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3231,588,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\\n\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2733c7d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3232,559,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3244,590,'_elementor_edit_mode','builder'),(3245,590,'_elementor_template_type','wp-page'),(3246,590,'_elementor_version','3.6.5'),(3247,590,'_elementor_pro_version','3.6.4'),(3248,590,'_wp_page_template','elementor_canvas'),(3249,590,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3250,590,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\\n\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2733c7d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3251,590,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3252,590,'_elementor_css','a:6:{s:4:\"time\";i:1652940319;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:7;s:6:\"Roboto\";i:12;s:4:\"Muli\";i:13;s:14:\"Odor Mean Chey\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"587c8cc\";i:1;s:7:\"587c8cc\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3253,591,'_elementor_edit_mode','builder'),(3254,591,'_elementor_template_type','wp-page'),(3255,591,'_elementor_version','3.6.5'),(3256,591,'_elementor_pro_version','3.6.4'),(3257,591,'_wp_page_template','elementor_canvas'),(3258,591,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3259,591,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\\n\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2733c7d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3260,591,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3261,591,'_elementor_css','a:6:{s:4:\"time\";i:1652940319;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:7;s:6:\"Roboto\";i:12;s:4:\"Muli\";i:13;s:14:\"Odor Mean Chey\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"587c8cc\";i:1;s:7:\"587c8cc\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3262,592,'_elementor_edit_mode','builder'),(3263,592,'_elementor_template_type','wp-page'),(3264,592,'_elementor_version','3.6.5'),(3265,592,'_elementor_pro_version','3.6.4'),(3266,592,'_wp_page_template','elementor_canvas'),(3267,592,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3268,592,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\\n\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3269,592,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3270,592,'_elementor_css','a:6:{s:4:\"time\";i:1652940319;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:7;s:6:\"Roboto\";i:12;s:4:\"Muli\";i:13;s:14:\"Odor Mean Chey\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"587c8cc\";i:1;s:7:\"587c8cc\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3272,593,'_elementor_edit_mode','builder'),(3273,593,'_elementor_template_type','wp-page'),(3274,593,'_elementor_version','3.6.5'),(3275,593,'_elementor_pro_version','3.6.4'),(3276,593,'_wp_page_template','elementor_canvas'),(3277,593,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3278,593,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\\n\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3279,593,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3280,593,'_elementor_css','a:6:{s:4:\"time\";i:1652940408;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:7;s:6:\"Roboto\";i:12;s:4:\"Muli\";i:13;s:14:\"Odor Mean Chey\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"587c8cc\";i:1;s:7:\"587c8cc\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3281,594,'_elementor_edit_mode','builder'),(3282,594,'_elementor_template_type','wp-page'),(3283,594,'_elementor_version','3.6.5'),(3284,594,'_elementor_pro_version','3.6.4'),(3285,594,'_wp_page_template','elementor_canvas'),(3286,594,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3287,594,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\\n\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3288,594,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3289,594,'_elementor_css','a:6:{s:4:\"time\";i:1652940408;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:7;s:6:\"Roboto\";i:12;s:4:\"Muli\";i:13;s:14:\"Odor Mean Chey\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"587c8cc\";i:1;s:7:\"587c8cc\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3290,595,'_elementor_edit_mode','builder'),(3291,595,'_elementor_template_type','wp-page'),(3292,595,'_elementor_version','3.6.5'),(3293,595,'_elementor_pro_version','3.6.4'),(3294,595,'_wp_page_template','elementor_canvas'),(3295,595,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3296,595,'_elementor_data','[{\"id\":\"6b82e41\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"52d6941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"78264e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1376687\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"3b1b0ca\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"d384d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"bf2fc6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85859dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"751a249\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342c54e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0d65c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"587c8cc\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"aba269f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"d04e244\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"a11b59b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"ef73233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d852750\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"271e8a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"b2cf2c9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c5209f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"267b0df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Sports for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"994a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512db8b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"0e927d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"99e0a58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Sports Programs seek to empower girls through sports.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"300\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1d3848\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/ivan-bandura-532042-unsplash.jpg\",\"id\":268,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cbb9e98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sports training is a critical component of Aahan\\u2019s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.<\\/p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f27e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"9ce62cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"1ad3235\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Some of our Sports Activities\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Regular communication with parents by coaches to help maintain girls\\u2019 participation<\\/li><li>Trainer led Chess classes<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls<\\/li><li>Training girls in long-distance running.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"98c3263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d56ee1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"-7\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[],\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3aedea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"3aece7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029be9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fdb9f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b31a1ed\"}]},\"elements\":[{\"id\":\"f308852\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Football \",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e53e843\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"653a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"1e5c293\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.<\\/p><p>Aahan Foundation, Domaro, Laterhar\\u2019 and \\u2018Girls for Girls, Jonha, Ranchi\\u2019 -clubs of the Aahan Foundation are registered with the All India Football Federation.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e6aa57\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4167ce\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"eccde94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"c58a73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"562df6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a33b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"76bb80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7edad3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"c363a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"6b87f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec1b868\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"c048928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"78f9b0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3050871\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b4f30c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"84538e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"71bf236\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9a6785\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bef7526\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"c83eb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"e27f1d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3297,595,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3298,595,'_elementor_css','a:6:{s:4:\"time\";i:1652940408;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:7;s:6:\"Roboto\";i:12;s:4:\"Muli\";i:13;s:14:\"Odor Mean Chey\";i:15;s:4:\"Jost\";}s:5:\"icons\";a:6:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"587c8cc\";i:1;s:7:\"587c8cc\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3299,561,'_elementor_edit_mode','builder'),(3300,561,'_elementor_template_type','wp-page'),(3301,561,'_elementor_version','3.6.5'),(3302,561,'_elementor_pro_version','3.6.4'),(3303,561,'ht_page_views_count','1'),(3312,597,'_elementor_edit_mode','builder'),(3313,597,'_elementor_template_type','wp-page'),(3314,597,'_elementor_version','3.6.5'),(3315,597,'_elementor_pro_version','3.6.4'),(3316,598,'_elementor_edit_mode','builder'),(3317,598,'_elementor_template_type','wp-page'),(3318,598,'_elementor_version','3.6.5'),(3319,598,'_elementor_pro_version','3.6.4'),(3320,561,'_wp_page_template','elementor_canvas'),(3321,561,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3322,561,'_elementor_data','[{\"id\":\"a60b10e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b5f0e9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"d4cab38\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8afddfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"2b5d56e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"9679ea6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"528475d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1305e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"58276e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dffa0\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"90e861b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"2fa6c21\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7b33358\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"9d3e8b9\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"680a4d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"fc82a01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2342a6d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"4e1d51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"875143d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"ed66ea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"5d8af06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Art for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"617ebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f57a8a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a662272\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"753cfd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Art For Development : Shining a light through art\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"200\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"945aa88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\",\"id\":44,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a67b960\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Art has a language of its own. It has the ability to shine a light for girls in marginalized communities. We incorporate art in our programs to create change. Art inspires creativity, gives hope, empowers the individual to express themselves.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de5ef5\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Art for awareness\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We identify and encourage talented young artists who know traditional art forms to sensitize the community about the ill effects of certain superstitions or practices such as child marriage through their art.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"404e874\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"fdb7821\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Art for Livelihood\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Talented young artists in the village are provided training and resources to create paintings and other handcrafted products. Aahan helps them market their paintings and products in cities and generate income. This can help prevent migrating to cities and working as domestic help. Art classes have become a great unifying factor between the girls from different villages.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"cfd4154\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"00b032e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"276b43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-background\\\">Aahan artists working on reviving the dying wall art of Sohrai are amongst a handful of artists from Jharkhand who create this kind of art on paper.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cee334d\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc6bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"e178dc0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"501475f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"04a43f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"c8ec553\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91c6a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"18e7188\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"1929d92\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7905cef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"47f5424\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"1166e45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7a95af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d34459\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"e100149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"64ca43d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11ac792\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ad280de\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e3d7385\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"95becfb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3323,599,'_elementor_edit_mode','builder'),(3324,599,'_elementor_template_type','wp-page'),(3325,599,'_elementor_version','3.6.5'),(3326,599,'_elementor_pro_version','3.6.4'),(3327,599,'_wp_page_template','elementor_canvas'),(3328,599,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3329,599,'_elementor_data','[{\"id\":\"a60b10e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b5f0e9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"d4cab38\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8afddfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"2b5d56e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"9679ea6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"528475d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1305e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"58276e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dffa0\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"90e861b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"2fa6c21\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"7b33358\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"9d3e8b9\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"680a4d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"fc82a01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2342a6d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"4e1d51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"875143d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"ed66ea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"5d8af06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Art for Development\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"617ebda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f57a8a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"a662272\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"753cfd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Art For Development : Shining a light through art\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"200\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"945aa88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\",\"id\":44,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a67b960\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Art has a language of its own. It has the ability to shine a light for girls in marginalized communities. We incorporate art in our programs to create change. Art inspires creativity, gives hope, empowers the individual to express themselves.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de5ef5\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Art for awareness\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We identify and encourage talented young artists who know traditional art forms to sensitize the community about the ill effects of certain superstitions or practices such as child marriage through their art.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"404e874\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"fdb7821\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Art for Livelihood\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Talented young artists in the village are provided training and resources to create paintings and other handcrafted products. Aahan helps them market their paintings and products in cities and generate income. This can help prevent migrating to cities and working as domestic help. Art classes have become a great unifying factor between the girls from different villages.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"cfd4154\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"00b032e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"276b43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"has-background\\\">Aahan artists working on reviving the dying wall art of Sohrai are amongst a handful of artists from Jharkhand who create this kind of art on paper.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cee334d\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fc6bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"e178dc0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"501475f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"04a43f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"c8ec553\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91c6a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"18e7188\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"1929d92\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7905cef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"47f5424\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"1166e45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7a95af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d34459\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"e100149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"64ca43d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11ac792\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ad280de\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e3d7385\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"95becfb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3330,561,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3331,563,'_elementor_edit_mode','builder'),(3332,563,'_elementor_template_type','wp-page'),(3333,563,'_elementor_version','3.6.5'),(3334,563,'_elementor_pro_version','3.6.4'),(3335,563,'ht_page_views_count','1'),(3344,601,'_elementor_edit_mode','builder'),(3345,601,'_elementor_template_type','wp-page'),(3346,601,'_elementor_version','3.6.5'),(3347,601,'_elementor_pro_version','3.6.4'),(3348,602,'_elementor_edit_mode','builder'),(3349,602,'_elementor_template_type','wp-page'),(3350,602,'_elementor_version','3.6.5'),(3351,602,'_elementor_pro_version','3.6.4'),(3352,563,'_wp_page_template','elementor_canvas'),(3353,563,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (3354,563,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Capacity Building\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Capacity Development\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/debby-hudson-1056837-unsplash.jpg\",\"id\":271,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s Capacity Building program develops and strengthens skills and abilities needed to survive, adapt and thrive in a fast-changing world.<\\/p><p>Because of the prevailing regional, social and gender discrepancies, girls of marginalised tribal communities facing Gender-Based Violence live in very challenging scenarios. With little or no access to education, the girls lack a sense of identity or purpose, are unable to explore their inherent talents and have no awareness of their human rights.T.<\\/p><p>The girls who get enrolled in school receive the most basic of education which does not develop any modern-day skills. The girls are cut off from the mainstream due to the language barrier, inability to use digital tools like email, and outdated teaching curriculum<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"We develop our capacity development programs through:\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-black-color has-text-color has-background\\\"><li>Research and analysis of the scenarios faced by the girls in the village<\\/li><li>Community involvement through our Urjaa Fellowship program \\u2013 these are the girls who have completed capacity building programs themselves<\\/li><li>Collaborations with academic, corporate, experts and other non-governmental entities<\\/li><\\/ul><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"4\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-c22d10b788fbff847\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"4\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 7\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"a292c59\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Our Capacity Development program is multi-faceted.\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>It includes higher studies, knowledge of the English language and digital literacy. An essential ingredient in our capacity-building is the transformation of the girls internally. Counselling, talks and workshops encourage girls to become independent in selecting the best path for themselves. Through programs like Urjaa Fellows, we create local change leaders who help other girls in their village, serve as role models and a connecting link between Modern and Rural India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our approach to capacity development includes :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Creating safe spaces for girls to express themselves<\\/li><li>Using sports and arts as a means of expression<\\/li><li>Building leadership skills such as communications, public speaking and team work<\\/li><li>Exploring and encouraging inherent talent<\\/li><li>Building networks for girls that build bonds and support for each other<\\/li><li>Participation in projects in cities and even outside India<\\/li><li>Providing platforms for sharing ideas and sharing experiences.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 id=\\\"aahan-s-capacity-development-program-enables-the-girls-to-grow-internally-building-capabilities-for-livelihood-and-enabling-financial-and-social-freedom\\\" class=\\\"has-text-align-center has-luminous-vivid-orange-color has-text-color\\\">Aahan\\u2019s Capacity Development Program enables the girls to grow internally, building capabilities for livelihood , and enabling financial and social freedom.<\\/h3>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3355,603,'_elementor_edit_mode','builder'),(3356,603,'_elementor_template_type','wp-page'),(3357,603,'_elementor_version','3.6.5'),(3358,603,'_elementor_pro_version','3.6.4'),(3359,603,'_wp_page_template','elementor_canvas'),(3360,603,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3361,603,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Education\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95c6f5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b9d1684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"4b6caf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"f01a08a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"97c2a00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fd58ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"d7ce6d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3362,563,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3363,604,'_elementor_edit_mode','builder'),(3364,604,'_elementor_template_type','wp-page'),(3365,604,'_elementor_version','3.6.5'),(3366,604,'_elementor_pro_version','3.6.4'),(3367,604,'_wp_page_template','elementor_canvas'),(3368,604,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3369,604,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Education\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95c6f5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b9d1684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"4b6caf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"f01a08a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"97c2a00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fd58ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"d7ce6d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3370,604,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3371,605,'_elementor_edit_mode','builder'),(3372,605,'_elementor_template_type','wp-page'),(3373,605,'_elementor_version','3.6.5'),(3374,605,'_elementor_pro_version','3.6.4'),(3375,605,'_wp_page_template','elementor_canvas'),(3376,605,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3377,605,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Education\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95c6f5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b9d1684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"4b6caf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"f01a08a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"97c2a00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fd58ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"d7ce6d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3378,605,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3379,606,'_elementor_edit_mode','builder'),(3380,606,'_elementor_template_type','wp-page'),(3381,606,'_elementor_version','3.6.5'),(3382,606,'_elementor_pro_version','3.6.4'),(3383,606,'_wp_page_template','elementor_canvas'),(3384,606,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3385,606,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Capacity Building\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95c6f5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b9d1684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"4b6caf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"f01a08a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"97c2a00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fd58ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"d7ce6d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3386,606,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3387,15,'_elementor_css','a:6:{s:4:\"time\";i:1652942464;s:5:\"fonts\";a:8:{i:0;s:10:\"Montserrat\";i:1;s:12:\"Josefin Sans\";i:2;s:10:\"Noto Serif\";i:3;s:5:\"Heebo\";i:6;s:6:\"Roboto\";i:11;s:4:\"Muli\";i:12;s:14:\"Odor Mean Chey\";i:14;s:4:\"Jost\";}s:5:\"icons\";a:5:{i:0;s:8:\"jkiticon\";i:1;s:9:\"fa-brands\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:5;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"23d65eb\";i:1;s:7:\"23d65eb\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3388,607,'_elementor_edit_mode','builder'),(3389,607,'_elementor_template_type','wp-page'),(3390,607,'_elementor_version','3.6.5'),(3391,607,'_elementor_pro_version','3.6.4'),(3392,607,'_wp_page_template','elementor_canvas'),(3393,607,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3394,607,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Capacity Building\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95c6f5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b9d1684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"4b6caf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"f01a08a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"97c2a00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fd58ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"d7ce6d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3395,607,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3396,608,'_elementor_edit_mode','builder'),(3397,608,'_elementor_template_type','wp-page'),(3398,608,'_elementor_version','3.6.5'),(3399,608,'_elementor_pro_version','3.6.4'),(3400,608,'_wp_page_template','elementor_canvas'),(3401,608,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3402,608,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Capacity Building\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95c6f5a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b9d1684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"4b6caf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"f01a08a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"97c2a00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fd58ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"d7ce6d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3403,608,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3404,609,'_elementor_edit_mode','builder'),(3405,609,'_elementor_template_type','wp-page'),(3406,609,'_elementor_version','3.6.5'),(3407,609,'_elementor_pro_version','3.6.4'),(3408,609,'_wp_page_template','elementor_canvas'),(3409,609,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3410,609,'_elementor_data','[{\"id\":\"0dc5681\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"fadf194\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"e239d62\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"8469f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"5ab0827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8248e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"03ee9fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"dd41f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"234bbbf\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf7b73\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"b24c157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"b288aad\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"dcf24bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"775fd63\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\"}],\"isInner\":false},{\"id\":\"cbd3d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"35fb5b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7dd95\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d582469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"9a04f82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"07ead09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"fc3bc6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Program: Capacity Building\\n\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69b25b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2054e3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"f927c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"f23787d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Capacity Development\\n\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b156f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/debby-hudson-1056837-unsplash.jpg\",\"id\":271,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0da6eea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan\\u2019s Capacity Building program develops and strengthens skills and abilities needed to survive, adapt and thrive in a fast-changing world.<\\/p><p>Because of the prevailing regional, social and gender discrepancies, girls of marginalised tribal communities facing Gender-Based Violence live in very challenging scenarios. With little or no access to education, the girls lack a sense of identity or purpose, are unable to explore their inherent talents and have no awareness of their human rights.T.<\\/p><p>The girls who get enrolled in school receive the most basic of education which does not develop any modern-day skills. The girls are cut off from the mainstream due to the language barrier, inability to use digital tools like email, and outdated teaching curriculum<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e12ba8\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"We develop our capacity development programs through:\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-black-color has-text-color has-background\\\"><li>Research and analysis of the scenarios faced by the girls in the village<\\/li><li>Community involvement through our Urjaa Fellowship program \\u2013 these are the girls who have completed capacity building programs themselves<\\/li><li>Collaborations with academic, corporate, experts and other non-governmental entities<\\/li><\\/ul><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"4\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-c22d10b788fbff847\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"4\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 7\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"ee15719\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"a292c59\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Gradient Color Style\",\"focused_title\":\"\",\"extra_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title\":\"Our Capacity Development program is multi-faceted.\",\"ekit_heading_focused_title\":\"Business\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>It includes higher studies, knowledge of the English language and digital literacy. An essential ingredient in our capacity-building is the transformation of the girls internally. Counselling, talks and workshops encourage girls to become independent in selecting the best path for themselves. Through programs like Urjaa Fellows, we create local change leaders who help other girls in their village, serve as role models and a connecting link between Modern and Rural India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"9edc077\"}],\"ekit_heading_seperator_image\":{\"id\":571,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/placeholder-169.png\"},\"ekit_heading_use_title_text_fill\":\"\",\"ekit_heading_extra_title_typography_typography\":\"custom\",\"ekit_heading_extra_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_heading_extra_title_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=secondary\",\"ekit_heading_seperator_color\":\"globals\\/colors?id=primary\",\"ekit_heading_extra_title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"60d2c4f\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our approach to capacity development includes :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Creating safe spaces for girls to express themselves<\\/li><li>Using sports and arts as a means of expression<\\/li><li>Building leadership skills such as communications, public speaking and team work<\\/li><li>Exploring and encouraging inherent talent<\\/li><li>Building networks for girls that build bonds and support for each other<\\/li><li>Participation in projects in cities and even outside India<\\/li><li>Providing platforms for sharing ideas and sharing experiences.<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"fded34f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"11ba9d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"4a1eab4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 id=\\\"aahan-s-capacity-development-program-enables-the-girls-to-grow-internally-building-capabilities-for-livelihood-and-enabling-financial-and-social-freedom\\\" class=\\\"has-text-align-center has-luminous-vivid-orange-color has-text-color\\\">Aahan\\u2019s Capacity Development Program enables the girls to grow internally, building capabilities for livelihood , and enabling financial and social freedom.<\\/h3>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"138fc11\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c3ff48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"9f2be52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76383f4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"255343b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"972e078\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf4b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\"}],\"isInner\":false},{\"id\":\"1470d75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"ffe8398\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76996b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\"}],\"isInner\":false},{\"id\":\"d52f8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"9313b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4058d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be89dde\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\"}],\"isInner\":false},{\"id\":\"18a46ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"6430d58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc58296\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec04fd4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1849426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"7c43011\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\"}],\"isInner\":false}],\"isInner\":false}]'),(3411,609,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3412,29,'_elementor_edit_mode','builder'),(3413,29,'_elementor_template_type','wp-page'),(3414,29,'_elementor_version','3.6.5'),(3415,29,'_elementor_pro_version','3.6.4'),(3416,610,'_elementor_edit_mode','builder'),(3417,610,'_elementor_template_type','wp-page'),(3418,610,'_elementor_version','3.6.5'),(3419,610,'_elementor_pro_version','3.6.4'),(3420,610,'_wp_page_template','elementor_canvas'),(3421,610,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3422,610,'_elementor_data','[{\"id\":\"c7cf31e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"background_background\":\"classic\",\"background_color_b\":\"#ffffff\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":100},\"margin\":{\"unit\":\"%\",\"top\":\"-6\",\"right\":0,\"bottom\":\"-6\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/top-header-scaled-1.jpg\",\"id\":208,\"alt\":\"\",\"source\":\"library\"},\"ekit_all_conditions_list\":[{\"_id\":\"11fc919\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1778284\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":80,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"7a8c436\"}]},\"elements\":[{\"id\":\"33d04dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"hide_mobile\":\"hidden-phone\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"a074f5c\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2823d01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"06711e9\"}]},\"elements\":[{\"id\":\"7061fad\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-envelope\",\"_id\":\"72b777d\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"icon_align\":\"left\",\"icon_color\":\"#4c5b6d\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.5},\"ekit_all_conditions_list\":[{\"_id\":\"66d663b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"74a4c85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56.673000000000001818989403545856475830078125,\"_inline_size_mobile\":33,\"ekit_all_conditions_list\":[{\"_id\":\"b94278f\"}]},\"elements\":[{\"id\":\"fa19b1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\'Aahan\\\" Means \'New Dawn\'\",\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Josefin Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"c4243f4\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ade0764\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":7.3300000000000000710542735760100185871124267578125,\"_inline_size_mobile\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"6fd39bf\"}]},\"elements\":[{\"id\":\"5378b00\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"320e991\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"1491259\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF00\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_spacing\":{\"unit\":\"px\",\"size\":11},\"hover_primary_color\":\"#2c93f5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"e4e269f\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":392,\"draft\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb06c31\",\"elType\":\"section\",\"settings\":{\"content_position\":\"top\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#efefef\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"column_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a258233\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"d863d5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.969999999999998863131622783839702606201171875,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"top\",\"align\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"7d99ed7\"}]},\"elements\":[{\"id\":\"bb01a33\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"8758122\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"bfd7cfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.81000000000000227373675443232059478759765625,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"-26\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"26f542f\"}]},\"elements\":[{\"id\":\"6d24c8d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"align_items\":\"center\",\"pointer\":\"text\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=secondary\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\"},\"ekit_all_conditions_list\":[{\"_id\":\"9e4d0ca\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"297\",\"draft\":true}],\"isInner\":false},{\"id\":\"0df7dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.21600000000000108002495835535228252410888671875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"aa20543\"}]},\"elements\":[{\"id\":\"6cc78a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate\",\"align\":\"right\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Noto Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"button_text_color\":\"#252425\",\"hover_animation\":\"float\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FCBC45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"70\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"hover_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"cc49b36\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":389,\"draft\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4092cf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":367,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/pexels-photo-209663.jpeg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"c193b94\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"cc56e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"511ed68\"}]},\"elements\":[{\"id\":\"d3cb3d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"313e5aa\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"85d9f93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"4380f82\"}]},\"elements\":[{\"id\":\"07da24a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"8ee147e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85b3180\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"256953d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f49b47c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"611\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"906ecb4\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"705550ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"7e62c6e\"}]},\"elements\":[{\"id\":\"6d7cfa01\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"ekit_all_conditions_list\":[{\"_id\":\"485e294\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"7e72dccd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"61bd37a\"}]},\"elements\":[{\"id\":\"12113b8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"951b10a\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"44dd1a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"46f0a51\"}]},\"elements\":[{\"id\":\"70a99cea\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"ac6d3ab\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"324e55e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bba43c3\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5f27ffde\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"103291f\"}]},\"elements\":[{\"id\":\"2169146a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"63546d1\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729b6321\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"00c0d2f\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9e02d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"987737f\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3671adac\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"3a86170\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"79e09bf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"407fe6e\"}]},\"elements\":[{\"id\":\"2870ecd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"ekit_all_conditions_list\":[{\"_id\":\"435319b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bae162d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"745c595\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"30b57c6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"d00a530\"}]},\"elements\":[{\"id\":\"4cd114cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"ekit_all_conditions_list\":[{\"_id\":\"391a921\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f75bea\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\"},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"69ae422\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74b50dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-180\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"d365276\"}]},\"elements\":[{\"id\":\"a56d96\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1065***1611131960767\",\"ekit_all_conditions_list\":[{\"_id\":\"71f6d0b\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50dd6013\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"08715e6\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"38556550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"b4a5291\"}]},\"elements\":[{\"id\":\"3a5ad6e3\",\"elType\":\"widget\",\"settings\":{\"address\":\"Jalan Sunset Road Kuta\",\"zoom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"8ea7b8a\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f94dd07\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"ekit_all_conditions_list\":[{\"_id\":\"00bc996\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5fb08bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"cd35924\"}]},\"elements\":[{\"id\":\"12c8036\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education and Training 21st Century skills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#252425\",\"typography_font_family\":\"Noto Serif\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"78e59e8\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5544da3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\",\"id\":152,\"alt\":\"\",\"source\":\"library\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"885b5c6\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08a7bc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"10f7da9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"ecb3452\"}]},\"elements\":[{\"id\":\"c2514fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br \\/><\\/em><\\/p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls\\u2019 learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls\\u2019 schooling and equipping the girls with vital 21st-century skills<\\/em>.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1adaf19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe knowledge is fundamental for girls\\u2019 to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.<\\/p>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"264b7df\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"d8adfb8\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"528794d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"73b9c09\"}]},\"elements\":[{\"id\":\"490a5c7\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\",\"_id\":\"bc22830\",\"acc_content\":\"<p>C: Critical thinking and problem-solving skills<br \\/>R: Responsibility<br \\/>E: Emotional Intelligence<br \\/>A: Awareness and Assertiveness<br \\/>T: Teamwork<br \\/>E: Effective Communication<\\/p>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_title_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"ekit_accordion_content_color\":\"#252425\",\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"e9e15be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Besides using the pedagogy of\\u00a0<strong>Cooperative learning and Gradual Release of Responsibility Mode<\\/strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.<\\/p><div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><ul id=\\\"swiper-wrapper-8574be2bea42273b\\\" class=\\\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\\\" aria-live=\\\"off\\\"><li class=\\\"wp-block-jetpack-slideshow_slide swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active\\\" role=\\\"group\\\" data-swiper-slide-index=\\\"3\\\" aria-hidden=\\\"true\\\" aria-label=\\\"1 \\/ 6\\\">\\u00a0<\\/li><\\/ul><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398e993\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"40\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2-e1652688232457.jpg\"},{\"id\":\"152\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/background-2.jpg\"},{\"id\":\"153\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/african-american-girl-hands-holding-a-marble-made-heart.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"image_spacing\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#FCBC45\",\"__globals__\":{\"dots_color\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"8edda8e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"fad5125\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"wp-block-jetpack-slideshow aligncenter\\\" data-autoplay=\\\"true\\\" data-delay=\\\"5\\\" data-effect=\\\"slide\\\" data-jetpack-block-initialized=\\\"true\\\"><div class=\\\"wp-block-jetpack-slideshow_container swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-pointer-events wp-swiper-initialized\\\"><p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.<\\/p><p>Furthermore, once the girls start getting formal training and jobs, other girls\\u2019 parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.<\\/p><\\/div><\\/div>\",\"align_mobile\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"_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},\"text_color\":\"#252425\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"ekit_all_conditions_list\":[{\"_id\":\"15ccb46\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fe703d\",\"elType\":\"widget\",\"settings\":{\"accordion_fields\":[{\"acc_title\":\" How to Change my Photo from Admin Dashboard? \",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"58a6302\"},{\"acc_title\":\" How to Change my Password easily?\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"d8233f4\"},{\"acc_title\":\" How to Change my Subscription Plan using PayPal\",\"acc_content\":\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast\",\"_id\":\"e2260ec\"}],\"accordion_style\":\"floating-style\",\"ekit_accordion_items\":[{\"acc_title\":\"Our activities include :\",\"_id\":\"bc22830\",\"acc_content\":\"<ul class=\\\"has-background\\\"><li>Foundational course<\\/li><li>Command over English language<\\/li><li>Digital skills: usage of MS office, Google workspace and applications etc<\\/li><li>Awareness on their fundamental rights and issues faced by the girls.<\\/li><li>Life Skills<\\/li><\\/ul>\",\"ekit_acc_is_active\":\"yes\"}],\"ekit_accordion_display_loop_count\":\"yes\",\"ekit_accordion_title_color\":\"#ffffff\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_color_close\":\"#ffffff\",\"ekit_accordion_background_close_background\":\"gradient\",\"ekit_accordion_icon_color\":\"#ffffff\",\"ekit_accordion_icon_color_close\":\"#ffffff\",\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_background_close_gradient_angle\":{\"unit\":\"deg\",\"size\":\"80\"},\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_border_open_border\":\"solid\",\"ekit_accordion_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_accordion_title_typography_typography\":\"custom\",\"ekit_accordion_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_accordion_title_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"65\",\"bottom\":\"30\",\"left\":\"65\",\"isLinked\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"579ea27\"}],\"ekit_accordion_content_typography_typography\":\"custom\",\"ekit_accordion_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_accordion_content_typography_font_weight\":\"400\",\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"ekit_accordion_background_color_b\":\"globals\\/colors?id=primary\",\"ekit_accordion_background_close_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_color\":\"\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_accordion_title_typography_font_weight\":\"500\",\"ekit_accordion_title_typography_text_transform\":\"uppercase\",\"ekit_accordion_background_color\":\"#993200\",\"ekit_accordion_background_color_b\":\"#ed6421\",\"ekit_accordion_background_close_color\":\"#ed6421\",\"ekit_accordion_background_close_color_b\":\"#ED6421\",\"ekit_accordion_content_color\":\"#252425\"},\"elements\":[],\"widgetType\":\"elementskit-accordion\"},{\"id\":\"75770d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FBF9F5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"160\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"120\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b4940df\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"46c6ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"ekit_all_conditions_list\":[{\"_id\":\"6c10073\"}]},\"elements\":[{\"id\":\"70d4308\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.<\\/p>\",\"text_color\":\"#ed6421\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Heebo\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"d58768e\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6edf44e\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"2b75b99\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"em\",\"top\":\"-6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d4d375a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"ekit_all_conditions_list\":[{\"_id\":\"47e0efc\"}]},\"elements\":[{\"id\":\"ab2c962\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read some of our stories of impact\",\"button_text_color\":\"#ffffff\",\"hover_color\":\"rgba(223,98,54,0.8)\",\"button_background_hover_color\":\"rgba(223,98,54,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"040\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"icon\":\"fa fa-window-restore\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":13},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"rgba(223,98,54,0)\",\"align\":\"center\",\"button_hover_border_color\":\"rgba(223,98,54,0.8)\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"far fa-window-restore\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"background_color\":\"globals\\/colors?id=primary\"},\"link\":{\"url\":\"#https:\\/\\/demoweblinks.in\\/aahan\\/success-stories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_all_conditions_list\":[{\"_id\":\"a2d514d\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec2922d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"gap\":\"wider\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"css_classes\":\"envato-kit-141-top-0\",\"background_overlay_color\":\"#000000\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg\",\"id\":35,\"alt\":\"\",\"source\":\"library\"},\"layout\":\"full_width\",\"height\":\"min-height\",\"content_position\":\"top\",\"background_color\":\"#D1CECE\",\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"darken\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"decc342\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"22f9f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"animation\":\"fadeIn\",\"animation_delay\":100,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"ekit_all_conditions_list\":[{\"_id\":\"aad89ee\"}]},\"elements\":[{\"id\":\"968df8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT US\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"448cced\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"97fb2c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"e264f96\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"244\",\"draft\":true}],\"isInner\":false},{\"id\":\"27bbd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.961999999999999744204615126363933086395263671875,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200,\"_inline_size_tablet\":22,\"_inline_size_mobile\":60,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"10b34b2\"}]},\"elements\":[{\"id\":\"5d7cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"ALL CONTACTS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"d409d9c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f51608\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location address\",\"icon\":\"fa fa-facebook\",\"_id\":\"48ff73c\",\"selected_icon\":{\"value\":\"jki jki-navigation-2-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Office number\",\"icon\":\"fa fa-twitter\",\"_id\":\"a26609a\",\"selected_icon\":{\"value\":\"jki jki-phone-call2-light\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"info@aahanfoundation.org\",\"icon\":\"fa fa-instagram\",\"_id\":\"050eab3\",\"selected_icon\":{\"value\":\"jki jki-mail-line\",\"library\":\"jkiticon\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":8},\"icon_size\":{\"unit\":\"px\",\"size\":16},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":17},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3000000000000000444089209850062616169452667236328125},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"icon_typography_font_weight\":\"300\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=primary\",\"icon_color\":\"globals\\/colors?id=primary\"},\"ekit_all_conditions_list\":[{\"_id\":\"20618e1\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"247\",\"draft\":true}],\"isInner\":false},{\"id\":\"8dbd6dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.038000000000000255795384873636066913604736328125,\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"bea5cda\"}]},\"elements\":[{\"id\":\"b90a001\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"ekit_all_conditions_list\":[{\"_id\":\"a104ffc\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89369b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"_id\":\"51ec31c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a538125\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Insert your Email\",\"placeholder\":\"Insert your Email\",\"min_date\":\"\",\"max_date\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":24},\"row_gap\":{\"unit\":\"px\",\"size\":11},\"field_border_color\":\"#f2f2f2\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"email_to\":\"\",\"email_subject\":\"New message from \\\"kit-138\\\"\",\"email_from\":\"\",\"email_from_name\":\"kit-138\",\"email_to_2\":\"\",\"email_subject_2\":\"New message from \\\"kit-138\\\"\",\"email_from_2\":\"\",\"email_from_name_2\":\"kit-138\",\"email_reply_to_2\":\"\",\"field_text_color\":\"#001c31\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Odor Mean Chey\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=primary\",\"html_typography_typography\":\"globals\\/typography?id=text\",\"button_typography_typography\":\"globals\\/typography?id=text\"},\"button_width\":\"\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":15},\"label_color\":\"#001c31\",\"field_typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#ff7f50\",\"button_border_color\":\"#141414\",\"button_background_hover_color\":\"#212121\",\"ekit_all_conditions_list\":[{\"_id\":\"96a146a\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"250\",\"draft\":true}],\"isInner\":false},{\"id\":\"074025a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":16,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":12,\"spread\":0,\"color\":\"rgba(0,0,0,0.03)\"},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"pulse\",\"animation_delay\":400,\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"558560e\"}]},\"elements\":[{\"id\":\"4d75edd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.600000000000000088817841970012523233890533447265625},\"typography_font_weight\":\"500\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"align_mobile\":\"left\",\"typography_text_transform\":\"uppercase\",\"ekit_all_conditions_list\":[{\"_id\":\"bef6367\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6890d1\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":41,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/causes.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/aubergine.jpg\"},{\"id\":44,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/happy-kid-W97QA6P.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-posing.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/Causes-2.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/portrait-of-volunteer-group-forming-huddles.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"6b62577\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"1536x1536\",\"show_all_galleries_label\":\"All\",\"ekit_all_conditions_list\":[{\"_id\":\"d24944c\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"253\",\"draft\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c3a30b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"column_position\":\"stretch\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F400\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_all_conditions_list\":[{\"_id\":\"676c22d\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"1ad406a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"7461b9b\"}]},\"elements\":[{\"id\":\"8b244b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 Website Name. All rights reserved\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"typography_font_family\":\"Jost\",\"align\":\"left\",\"ekit_all_conditions_list\":[{\"_id\":\"f06c876\"}],\"ekit_adv_tooltip_content\":\"Tooltip Content.\"},\"elements\":[],\"widgetType\":\"global\",\"templateID\":\"256\",\"draft\":true}],\"isInner\":false}],\"isInner\":false}]'),(3423,610,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(3424,611,'_wp_attached_file','2022/05/contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-.jpg'),(3425,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:93:\"2022/05/contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:93:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:94:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:93:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:93:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:95:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_585x295\";a:4:{s:4:\"file\";s:93:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--585x295.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"htmega_size_1170x536\";a:4:{s:4:\"file\";s:94:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--1170x536.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"htmega_size_396x360\";a:4:{s:4:\"file\";s:93:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--396x360.jpg\";s:5:\"width\";i:396;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:94:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"twentytwenty-fullscreen\";a:4:{s:4:\"file\";s:95:\"contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website--1980x1320.jpg\";s:5:\"width\";i:1980;s:6:\"height\";i:1320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3426,611,'_elementor_source_image_hash','ce1e8ca859acaf0679e9f258097906ecb7cf0532'),(3427,612,'_elementor_edit_mode','builder'),(3428,612,'_elementor_template_type','page'),(3429,612,'_elementor_version','3.6.5'),(3430,612,'_elementor_pro_version','3.6.4'),(3431,613,'_elementor_edit_mode','builder'),(3432,613,'_elementor_template_type','page'),(3433,613,'_elementor_version','3.6.5'),(3434,613,'_elementor_pro_version','3.6.4'),(3435,612,'_wp_page_template','elementor_header_footer'),(3436,612,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3437,612,'_elementor_data','[{\"id\":\"49be868c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"611\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2c8b5fd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"4a5839db\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"4edf067f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"162711a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61e0dce8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"6661eafc\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"785ebd83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"37ae01dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"796daabb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b80ea2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb3cdd6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f815318\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"23cf787c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"328006a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12645f56\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a0a45db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"17c8e18e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ef1144a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25c7f588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-180\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"3897de1d\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1065***1611131960767\",\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e14bde0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5b28bf03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"4c2205fe\",\"elType\":\"widget\",\"settings\":{\"address\":\"Jalan Sunset Road Kuta\",\"zoom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(3438,614,'_elementor_edit_mode','builder'),(3439,614,'_elementor_template_type','page'),(3440,614,'_elementor_version','3.6.5'),(3441,614,'_elementor_pro_version','3.6.4'),(3442,614,'_wp_page_template','elementor_header_footer'),(3443,614,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3444,614,'_elementor_data','[{\"id\":\"49be868c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"611\",\"url\":\"https:\\/\\/demoweblinks.in\\/aahan\\/wp-content\\/uploads\\/2022\\/05\\/contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-.jpg\"},\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-62\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"162\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2c8b5fd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"4a5839db\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"4edf067f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"162711a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61e0dce8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"6661eafc\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"right\",\"icon_color\":\"#FCBC45\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"785ebd83\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"37ae01dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"796daabb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h5\",\"title_color\":\"#FCBC45\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b80ea2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"left\",\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb3cdd6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#6F747E\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f815318\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"23cf787c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"328006a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Denpasar, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12645f56\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Niti Mandala, Renon, Bali, Indonesia \\u2013 80225\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5a0a45db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"17c8e18e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kuta, Bali\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=35b8a75\"},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ef1144a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Sunset Road No.815, Kuta, Bali 80361\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"27ef4dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4785a6b\",\"text\":\"(+62) 8152 254 239\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"8a86052\",\"text\":\"contact@domain.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Heebo\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_color\":\"#FCBC45\",\"text_color\":\"#6F747E\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"25c7f588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-180\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-120\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"3897de1d\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"1065***1611131960767\",\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e14bde0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5b28bf03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}]},\"elements\":[{\"id\":\"4c2205fe\",\"elType\":\"widget\",\"settings\":{\"address\":\"Jalan Sunset Road Kuta\",\"zoom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"ekit_conditions_list\":\"login_status\",\"_id\":\"\",\"ekit_condition_operator\":\"is\",\"ekit_condition_login_status\":\"logged\",\"ekit_condition_user_role\":\"subscriber\",\"ekit_condition_operating_system\":\"mac_os\",\"ekit_condition_browser\":\"chrome\",\"ekit_condition_date\":\"19-05-2022\",\"ekit_condition_day\":\"monday\",\"ekit_condition_time\":\"12:00\"}],\"ekit_adv_tooltip_bg_image\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"ekit_adv_tooltip_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(3445,612,'_elementor_page_assets','a:0:{}'),(3446,612,'envato_tk_source_kit','6'),(3447,612,'envato_tk_source_index','12');
/*!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=615 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,'2022-05-16 04:35:32','2022-05-16 04:35:32','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2022-05-16 04:35:32','2022-05-16 04:35:32','',0,'https://demoweblinks.in/aahan/?p=1',0,'post','',1),(2,1,'2022-05-16 04:35:32','2022-05-16 04:35:32','<!-- 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://demoweblinks.in/aahan/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2022-05-16 04:35:32','2022-05-16 04:35:32','',0,'https://demoweblinks.in/aahan/?page_id=2',0,'page','',0),(3,1,'2022-05-16 04:35:32','2022-05-16 04:35:32','<!-- 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://demoweblinks.in/aahan.</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 we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-05-16 04:35:32','2022-05-16 04:35:32','',0,'https://demoweblinks.in/aahan/?page_id=3',0,'page','',0),(4,1,'2022-05-16 04:45:00','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-05-16 04:45:00','0000-00-00 00:00:00','',0,'https://demoweblinks.in/aahan/?p=4',0,'post','',0),(5,1,'2022-05-16 04:47:26','2022-05-16 04:47:26','','Default Kit','','publish','closed','closed','','default-kit','','','2022-05-16 04:47:26','2022-05-16 04:47:26','',0,'https://demoweblinks.in/aahan/?p=5',0,'elementor_library','',0),(6,1,'2022-05-16 04:50:21','2022-05-16 04:50:21','','Humanite – Charity & Donation Elementor Template Kit','','publish','closed','closed','','humanite-charity-donation-elementor-template-kit','','','2022-05-16 04:50:21','2022-05-16 04:50:21','',0,'https://demoweblinks.in/aahan/?p=6',0,'envato_tk_import','',0),(7,1,'2022-05-16 04:50:48','2022-05-16 04:50:48','','Kit Styles: Humanite – Charity & Donation Elementor Template Kit','','publish','closed','closed','','global-kit-styles','','','2022-05-16 12:16:59','2022-05-16 12:16:59','',0,'https://demoweblinks.in/aahan/?elementor_library=global-kit-styles',0,'elementor_library','',0),(8,1,'2022-05-16 04:50:48','2022-05-16 04:50:48','','Global Kit Styles','','inherit','closed','closed','','7-revision-v1','','','2022-05-16 04:50:48','2022-05-16 04:50:48','',7,'https://demoweblinks.in/aahan/?p=8',0,'revision','',0),(9,1,'2022-05-16 04:50:48','2022-05-16 04:50:48','','Global Kit Styles','','inherit','closed','closed','','7-revision-v1','','','2022-05-16 04:50:48','2022-05-16 04:50:48','',7,'https://demoweblinks.in/aahan/?p=9',0,'revision','',0),(10,1,'2022-05-16 04:50:48','2022-05-16 04:50:48','','Kit Styles: Humanite – Charity & Donation Elementor Template Kit','','inherit','closed','closed','','7-revision-v1','','','2022-05-16 04:50:48','2022-05-16 04:50:48','',7,'https://demoweblinks.in/aahan/?p=10',0,'revision','',0),(11,1,'2022-05-16 04:51:57','2022-05-16 04:51:57','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','publish','closed','closed','','landing-page','','','2022-05-18 09:39:47','2022-05-18 09:39:47','',0,'https://demoweblinks.in/aahan/?page_id=11',0,'page','',0),(12,1,'2022-05-16 04:51:03','2022-05-16 04:51:03','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-05-16 04:51:03','2022-05-16 04:51:03','',0,'https://demoweblinks.in/aahan/2022/05/16/wp-global-styles-twentytwentytwo/',0,'wp_global_styles','',0),(13,1,'2022-05-16 04:51:15','2022-05-16 04:51:15','','Elementor #11','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 04:51:15','2022-05-16 04:51:15','',11,'https://demoweblinks.in/aahan/?p=13',0,'revision','',0),(14,1,'2022-05-16 04:51:57','2022-05-16 04:51:57','','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 04:51:57','2022-05-16 04:51:57','',11,'https://demoweblinks.in/aahan/?p=14',0,'revision','',0),(15,1,'2022-05-16 04:52:33','2022-05-16 04:52:33','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','publish','closed','closed','','about-us','','','2022-05-19 04:08:22','2022-05-19 04:08:22','',0,'https://demoweblinks.in/aahan/?page_id=15',0,'page','',0),(16,1,'2022-05-16 04:52:33','2022-05-16 04:52:33','','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-16 04:52:33','2022-05-16 04:52:33','',15,'https://demoweblinks.in/aahan/?p=16',0,'revision','',0),(17,1,'2022-05-16 04:52:47','2022-05-16 04:52:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','publish','closed','closed','','our-programs','','','2022-05-18 12:42:07','2022-05-18 12:42:07','',0,'https://demoweblinks.in/aahan/?page_id=17',0,'page','',0),(18,1,'2022-05-16 04:52:47','2022-05-16 04:52:47','','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-16 04:52:47','2022-05-16 04:52:47','',17,'https://demoweblinks.in/aahan/?p=18',0,'revision','',0),(19,1,'2022-05-16 04:53:12','2022-05-16 04:53:12','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','publish','closed','closed','','success-stories','','','2022-05-18 06:13:12','2022-05-18 06:13:12','',0,'https://demoweblinks.in/aahan/?page_id=19',0,'page','',0),(20,1,'2022-05-16 04:53:12','2022-05-16 04:53:12','','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-16 04:53:12','2022-05-16 04:53:12','',19,'https://demoweblinks.in/aahan/?p=20',0,'revision','',0),(21,1,'2022-05-16 04:54:07','2022-05-16 04:54:07','','Covid Initiatives','','publish','closed','closed','','covid-initiatives','','','2022-05-16 04:54:07','2022-05-16 04:54:07','',0,'https://demoweblinks.in/aahan/?page_id=21',0,'page','',0),(22,1,'2022-05-16 04:54:07','2022-05-16 04:54:07','','Covid Initiatives','','inherit','closed','closed','','21-revision-v1','','','2022-05-16 04:54:07','2022-05-16 04:54:07','',21,'https://demoweblinks.in/aahan/?p=22',0,'revision','',0),(23,1,'2022-05-16 04:54:21','2022-05-16 04:54:21','','Recognition','','publish','closed','closed','','recognition','','','2022-05-16 04:54:21','2022-05-16 04:54:21','',0,'https://demoweblinks.in/aahan/?page_id=23',0,'page','',0),(24,1,'2022-05-16 04:54:21','2022-05-16 04:54:21','','Recognition','','inherit','closed','closed','','23-revision-v1','','','2022-05-16 04:54:21','2022-05-16 04:54:21','',23,'https://demoweblinks.in/aahan/?p=24',0,'revision','',0),(25,1,'2022-05-16 04:54:34','2022-05-16 04:54:34','','Blogs','','publish','closed','closed','','blogs','','','2022-05-16 04:54:34','2022-05-16 04:54:34','',0,'https://demoweblinks.in/aahan/?page_id=25',0,'page','',0),(26,1,'2022-05-16 04:54:34','2022-05-16 04:54:34','','Blogs','','inherit','closed','closed','','25-revision-v1','','','2022-05-16 04:54:34','2022-05-16 04:54:34','',25,'https://demoweblinks.in/aahan/?p=26',0,'revision','',0),(27,1,'2022-05-16 04:54:46','2022-05-16 04:54:46','','Get Involved','','publish','closed','closed','','get-involved','','','2022-05-16 04:54:46','2022-05-16 04:54:46','',0,'https://demoweblinks.in/aahan/?page_id=27',0,'page','',0),(28,1,'2022-05-16 04:54:46','2022-05-16 04:54:46','','Get Involved','','inherit','closed','closed','','27-revision-v1','','','2022-05-16 04:54:46','2022-05-16 04:54:46','',27,'https://demoweblinks.in/aahan/?p=28',0,'revision','',0),(29,1,'2022-05-16 04:54:56','2022-05-16 04:54:56','','Contact Us','','publish','closed','closed','','contact-us','','','2022-05-16 04:54:56','2022-05-16 04:54:56','',0,'https://demoweblinks.in/aahan/?page_id=29',0,'page','',0),(30,1,'2022-05-16 04:54:56','2022-05-16 04:54:56','','Contact Us','','inherit','closed','closed','','29-revision-v1','','','2022-05-16 04:54:56','2022-05-16 04:54:56','',29,'https://demoweblinks.in/aahan/?p=30',0,'revision','',0),(32,1,'2022-05-16 04:55:35','2022-05-16 04:55:35','','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 04:55:35','2022-05-16 04:55:35','',11,'https://demoweblinks.in/aahan/?p=32',0,'revision','',0),(33,1,'2022-05-16 04:55:35','2022-05-16 04:55:35','','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 04:55:35','2022-05-16 04:55:35','',11,'https://demoweblinks.in/aahan/?p=33',0,'revision','',0),(34,1,'2022-05-16 04:55:35','2022-05-16 04:55:35','','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 04:55:35','2022-05-16 04:55:35','',11,'https://demoweblinks.in/aahan/?p=34',0,'revision','',0),(35,1,'2022-05-16 04:55:59','2022-05-16 04:55:59','','mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg','','inherit','open','closed','','mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad-jpg','','','2022-05-16 04:55:59','2022-05-16 04:55:59','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/mom-at-home-during-lockdown-with-kids-overwhelmed-and-sad.jpg',0,'attachment','image/jpeg',0),(36,1,'2022-05-16 04:56:05','2022-05-16 04:56:05','','aubergine.jpg','','inherit','open','closed','','aubergine-jpg','','','2022-05-16 04:56:05','2022-05-16 04:56:05','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg',0,'attachment','image/jpeg',0),(37,1,'2022-05-16 04:56:10','2022-05-16 04:56:10','','Hands.png','','inherit','open','closed','','hands-png','','','2022-05-16 04:56:10','2022-05-16 04:56:10','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Hands.png',0,'attachment','image/png',0),(38,1,'2022-05-16 04:56:15','2022-05-16 04:56:15','','group-of-volunteer-forming-huddles.jpg','','inherit','open','closed','','group-of-volunteer-forming-huddles-jpg','','','2022-05-16 04:56:15','2022-05-16 04:56:15','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg',0,'attachment','image/jpeg',0),(39,1,'2022-05-16 04:56:24','2022-05-16 04:56:24','','portrait-of-volunteer-group-forming-huddles.jpg','','inherit','open','closed','','portrait-of-volunteer-group-forming-huddles-jpg','','','2022-05-16 04:56:24','2022-05-16 04:56:24','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg',0,'attachment','image/jpeg',0),(40,1,'2022-05-16 04:56:29','2022-05-16 04:56:29','','Causes-2.jpg','','inherit','open','closed','','causes-2-jpg','','','2022-05-16 04:56:29','2022-05-16 04:56:29','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg',0,'attachment','image/jpeg',0),(41,1,'2022-05-16 04:56:32','2022-05-16 04:56:32','','causes.jpg','','inherit','open','closed','','causes-jpg','','','2022-05-16 04:56:32','2022-05-16 04:56:32','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg',0,'attachment','image/jpeg',0),(42,1,'2022-05-16 04:56:34','2022-05-16 04:56:34','','Image-A9QS3N7.jpg','','inherit','open','closed','','image-a9qs3n7-jpg','','','2022-05-16 04:56:34','2022-05-16 04:56:34','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg',0,'attachment','image/jpeg',0),(43,1,'2022-05-16 04:56:38','2022-05-16 04:56:38','','hands-of-young-homeless-african-man-begging-for-food.jpg','','inherit','open','closed','','hands-of-young-homeless-african-man-begging-for-food-jpg','','','2022-05-16 04:56:38','2022-05-16 04:56:38','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg',0,'attachment','image/jpeg',0),(44,1,'2022-05-16 04:56:48','2022-05-16 04:56:48','','happy-kid-W97QA6P.jpg','','inherit','open','closed','','happy-kid-w97qa6p-jpg','','','2022-05-16 04:56:48','2022-05-16 04:56:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg',0,'attachment','image/jpeg',0),(45,1,'2022-05-16 04:56:55','2022-05-16 04:56:55','','portrait-of-volunteer-group-posing.jpg','','inherit','open','closed','','portrait-of-volunteer-group-posing-jpg','','','2022-05-16 04:56:55','2022-05-16 04:56:55','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg',0,'attachment','image/jpeg',0),(46,1,'2022-05-16 04:57:00','2022-05-16 04:57:00','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Home','','publish','closed','closed','','home','','','2022-05-16 04:57:00','2022-05-16 04:57:00','',0,'https://demoweblinks.in/aahan/?elementor_library=home',0,'elementor_library','',0),(47,1,'2022-05-16 04:57:00','2022-05-16 04:57:00','','Home','','inherit','closed','closed','','46-revision-v1','','','2022-05-16 04:57:00','2022-05-16 04:57:00','',46,'https://demoweblinks.in/aahan/?p=47',0,'revision','',0),(48,1,'2022-05-16 04:57:00','2022-05-16 04:57:00','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Home','','inherit','closed','closed','','46-revision-v1','','','2022-05-16 04:57:00','2022-05-16 04:57:00','',46,'https://demoweblinks.in/aahan/?p=48',0,'revision','',0),(49,1,'2022-05-16 04:58:02','2022-05-16 04:58:02','','Logo2%402x.png','','inherit','open','closed','','logo2%402x-png','','','2022-05-16 04:58:02','2022-05-16 04:58:02','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2402x.png',0,'attachment','image/png',0),(50,1,'2022-05-16 04:58:05','2022-05-16 04:58:05','','logo-black%402x.png','','inherit','open','closed','','logo-black%402x-png','','','2022-05-16 04:58:05','2022-05-16 04:58:05','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/logo-black402x.png',0,'attachment','image/png',0),(51,1,'2022-05-16 04:58:08','2022-05-16 04:58:08','','Logo2@2x.png','','inherit','open','closed','','logo22x-png','','','2022-05-16 04:58:08','2022-05-16 04:58:08','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png',0,'attachment','image/png',0),(52,1,'2022-05-16 04:58:08','2022-05-16 04:58:08','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1259\" height=\"335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png 1259w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-300x80.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-1024x272.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-768x204.png 768w\" sizes=\"(max-width: 1259px) 100vw, 1259px\" />															\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Email Address					\n				</h3>\n									<p>\n						Support@domain.com					</p>\n				<h3>\n						Phone Number					\n				</h3>\n									<p>\n						(+62) 8152 254 239					</p>\n				<h3>\n						Our Location					\n				</h3>\n									<p>\n						Kuta, Bali 80361					</p>\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n		Follow Us :','Header','','publish','closed','closed','','header','','','2022-05-16 04:58:08','2022-05-16 04:58:08','',0,'https://demoweblinks.in/aahan/?elementor_library=header',0,'elementor_library','',0),(53,1,'2022-05-16 04:58:08','2022-05-16 04:58:08','','Header','','inherit','closed','closed','','52-revision-v1','','','2022-05-16 04:58:08','2022-05-16 04:58:08','',52,'https://demoweblinks.in/aahan/?p=53',0,'revision','',0),(54,1,'2022-05-16 04:58:08','2022-05-16 04:58:08','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1259\" height=\"335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png 1259w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-300x80.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-1024x272.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-768x204.png 768w\" sizes=\"(max-width: 1259px) 100vw, 1259px\" />															\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Email Address					\n				</h3>\n									<p>\n						Support@domain.com					</p>\n				<h3>\n						Phone Number					\n				</h3>\n									<p>\n						(+62) 8152 254 239					</p>\n				<h3>\n						Our Location					\n				</h3>\n									<p>\n						Kuta, Bali 80361					</p>\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n		Follow Us :','Header','','inherit','closed','closed','','52-revision-v1','','','2022-05-16 04:58:08','2022-05-16 04:58:08','',52,'https://demoweblinks.in/aahan/?p=54',0,'revision','',0),(56,1,'2022-05-16 05:00:03','2022-05-16 05:00:03','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>','Header (with Nav)','','publish','closed','closed','','header-with-nav','','','2022-05-16 05:00:03','2022-05-16 05:00:03','',0,'https://demoweblinks.in/aahan/?elementor_library=header-with-nav',0,'elementor_library','',0),(57,1,'2022-05-16 05:00:03','2022-05-16 05:00:03','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>','Header (with Nav)','','inherit','closed','closed','','56-revision-v1','','','2022-05-16 05:00:03','2022-05-16 05:00:03','',56,'https://demoweblinks.in/aahan/?p=57',0,'revision','',0),(58,1,'2022-05-16 05:00:03','2022-05-16 05:00:03','\n\n/** Start Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n.envato-kit-66-menu .e--pointer-framed .elementor-item:before{\n	border-radius:1px;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper{\n	position:relative;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit{\n	position:static;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit button{\n	position: absolute;\n    top: 50%;\n    right: 6px;\n    transform: translate(0, -50%);\n		-moz-transform: translate(0, -50%);\n		-webmit-transform: translate(0, -50%);\n}\n\n.envato-kit-66-testi-slider .elementor-testimonial__footer{\n	margin-top: -60px !important;\n	z-index: 99;\n  position: relative;\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	left:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev:before{\n	display:block;\n	margin-top:0px;\n	margin-left:0px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	right:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next:before{\n	display:block;\n	margin-top:-5px;\n	margin-right:-5px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-orangetext{\n	color:#f4511e;\n}\n\n.envato-kit-66-countdown .elementor-countdown-label{\n	display:inline-block !important;\n	border:2px solid rgba(255,255,255,0.2);\n	padding:9px 20px;\n}\n\n/** End Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n','twentytwentytwo','','publish','closed','closed','','twentytwentytwo','','','2022-05-16 05:00:03','2022-05-16 05:00:03','',0,'https://demoweblinks.in/aahan/2022/05/16/twentytwentytwo/',0,'custom_css','',0),(59,1,'2022-05-16 05:00:03','2022-05-16 05:00:03','\n\n/** Start Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n.envato-kit-66-menu .e--pointer-framed .elementor-item:before{\n	border-radius:1px;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper{\n	position:relative;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit{\n	position:static;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit button{\n	position: absolute;\n    top: 50%;\n    right: 6px;\n    transform: translate(0, -50%);\n		-moz-transform: translate(0, -50%);\n		-webmit-transform: translate(0, -50%);\n}\n\n.envato-kit-66-testi-slider .elementor-testimonial__footer{\n	margin-top: -60px !important;\n	z-index: 99;\n  position: relative;\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	left:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev:before{\n	display:block;\n	margin-top:0px;\n	margin-left:0px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	right:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next:before{\n	display:block;\n	margin-top:-5px;\n	margin-right:-5px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-orangetext{\n	color:#f4511e;\n}\n\n.envato-kit-66-countdown .elementor-countdown-label{\n	display:inline-block !important;\n	border:2px solid rgba(255,255,255,0.2);\n	padding:9px 20px;\n}\n\n/** End Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n','twentytwentytwo','','inherit','closed','closed','','58-revision-v1','','','2022-05-16 05:00:03','2022-05-16 05:00:03','',58,'https://demoweblinks.in/aahan/?p=59',0,'revision','',0),(65,1,'2022-05-16 05:35:55','2022-05-16 05:35:55','','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 05:35:55','2022-05-16 05:35:55','',11,'https://demoweblinks.in/aahan/?p=65',0,'revision','',0),(66,1,'2022-05-16 05:35:55','2022-05-16 05:35:55','','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 05:35:55','2022-05-16 05:35:55','',11,'https://demoweblinks.in/aahan/?p=66',0,'revision','',0),(67,1,'2022-05-16 05:35:55','2022-05-16 05:35:55','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1259\" height=\"335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png 1259w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-300x80.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-1024x272.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-768x204.png 768w\" sizes=\"(max-width: 1259px) 100vw, 1259px\" />															\n				<h3>\n						Email Address					\n				</h3>\n									<p>\n						Support@domain.com					</p>\n				<h3>\n						Phone Number					\n				</h3>\n									<p>\n						(+62) 8152 254 239					</p>\n				<h3>\n						Our Location					\n				</h3>\n									<p>\n						Kuta, Bali 80361					</p>\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n		Follow Us :Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 05:35:55','2022-05-16 05:35:55','',11,'https://demoweblinks.in/aahan/?p=67',0,'revision','',0),(68,1,'2022-05-16 05:44:05','2022-05-16 05:44:05','{\n    \"show_on_front\": {\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-16 05:44:05\"\n    },\n    \"page_on_front\": {\n        \"value\": \"11\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-16 05:44:05\"\n    }\n}','','','trash','closed','closed','','6ae8940e-8b8d-44ee-ba2f-6226e1e03eee','','','2022-05-16 05:44:05','2022-05-16 05:44:05','',0,'https://demoweblinks.in/aahan/2022/05/16/6ae8940e-8b8d-44ee-ba2f-6226e1e03eee/',0,'customize_changeset','',0),(69,1,'2022-05-16 05:45:45','2022-05-16 05:45:45','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2022-05-16 05:45:45','2022-05-16 05:45:45','',0,'https://demoweblinks.in/aahan/2022/05/16/navigation/',0,'wp_navigation','',0),(70,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','70','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=70',16,'nav_menu_item','',0),(71,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','71','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=71',15,'nav_menu_item','',0),(72,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','72','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=72',14,'nav_menu_item','',0),(73,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','73','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=73',13,'nav_menu_item','',0),(74,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','74','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=74',12,'nav_menu_item','',0),(75,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','75','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=75',11,'nav_menu_item','',0),(76,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','76','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=76',5,'nav_menu_item','',0),(77,1,'2022-05-19 04:42:41','2022-05-16 05:48:39',' ','','','publish','closed','closed','','77','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',0,'https://demoweblinks.in/aahan/?p=77',1,'nav_menu_item','',0),(78,1,'2022-05-16 05:55:29','2022-05-16 05:55:29','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOGO</h1>','Header (with Nav)','','publish','closed','closed','','header-with-nav-2','','','2022-05-16 05:55:29','2022-05-16 05:55:29','',0,'https://demoweblinks.in/aahan/?elementor_library=header-with-nav-2',0,'elementor_library','',0),(79,1,'2022-05-16 05:55:29','2022-05-16 05:55:29','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOGO</h1>','Header (with Nav)','','inherit','closed','closed','','78-revision-v1','','','2022-05-16 05:55:29','2022-05-16 05:55:29','',78,'https://demoweblinks.in/aahan/?p=79',0,'revision','',0),(81,1,'2022-05-16 06:20:50','2022-05-16 06:20:50','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1259\" height=\"335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png 1259w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-300x80.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-1024x272.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-768x204.png 768w\" sizes=\"(max-width: 1259px) 100vw, 1259px\" />															\n				<h3>\n						Email Address					\n				</h3>\n									<p>\n						Support@domain.com					</p>\n				<h3>\n						Phone Number					\n				</h3>\n									<p>\n						(+62) 8152 254 239					</p>\n				<h3>\n						Our Location					\n				</h3>\n									<p>\n						Kuta, Bali 80361					</p>\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n		Follow Us :Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:20:50','2022-05-16 06:20:50','',11,'https://demoweblinks.in/aahan/?p=81',0,'revision','',0),(82,1,'2022-05-16 06:20:50','2022-05-16 06:20:50','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1259\" height=\"335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x.png 1259w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-300x80.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-1024x272.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Logo2@2x-768x204.png 768w\" sizes=\"(max-width: 1259px) 100vw, 1259px\" />															\n				<h3>\n						Email Address					\n				</h3>\n									<p>\n						Support@domain.com					</p>\n				<h3>\n						Phone Number					\n				</h3>\n									<p>\n						(+62) 8152 254 239					</p>\n				<h3>\n						Our Location					\n				</h3>\n									<p>\n						Kuta, Bali 80361					</p>\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n		Follow Us :Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:20:50','2022-05-16 06:20:50','',11,'https://demoweblinks.in/aahan/?p=82',0,'revision','',0),(83,1,'2022-05-16 06:20:51','2022-05-16 06:20:51','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:20:51','2022-05-16 06:20:51','',11,'https://demoweblinks.in/aahan/?p=83',0,'revision','',0),(84,1,'2022-05-16 06:23:24','2022-05-16 06:23:24','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:23:24','2022-05-16 06:23:24','',11,'https://demoweblinks.in/aahan/?p=84',0,'revision','',0),(85,1,'2022-05-16 06:23:24','2022-05-16 06:23:24','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:23:24','2022-05-16 06:23:24','',11,'https://demoweblinks.in/aahan/?p=85',0,'revision','',0),(86,1,'2022-05-16 06:23:24','2022-05-16 06:23:24','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:23:24','2022-05-16 06:23:24','',11,'https://demoweblinks.in/aahan/?p=86',0,'revision','',0),(87,1,'2022-05-16 06:25:54','2022-05-16 06:25:54','','josh-withers-525892-unsplash.jpg','','inherit','open','closed','','josh-withers-525892-unsplash-jpg','','','2022-05-16 06:25:54','2022-05-16 06:25:54','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/josh-withers-525892-unsplash.jpg',0,'attachment','image/jpeg',0),(88,1,'2022-05-16 06:26:35','2022-05-16 06:26:35','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Sub heading</h2>		\n			<h1>HE<br>RO</h1>		\n			<h2>Lorem donec massa sapien faucibus et. In nisl nisi scelerisque eu ultrices vitae. Ac odio tempor orci dapibus ultrices in iaculis nunc sed. Sit amet volutpat consequat mauris.</h2>		\n			<a href=\"#\" role=\"button\">\n						Show More\n					</a>','Hero - Image Background','','publish','closed','closed','','hero-image-background','','','2022-05-16 06:26:35','2022-05-16 06:26:35','',0,'https://demoweblinks.in/aahan/?elementor_library=hero-image-background',0,'elementor_library','',0),(89,1,'2022-05-16 06:26:35','2022-05-16 06:26:35','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Sub heading</h2>		\n			<h1>HE<br>RO</h1>		\n			<h2>Lorem donec massa sapien faucibus et. In nisl nisi scelerisque eu ultrices vitae. Ac odio tempor orci dapibus ultrices in iaculis nunc sed. Sit amet volutpat consequat mauris.</h2>		\n			<a href=\"#\" role=\"button\">\n						Show More\n					</a>','Hero - Image Background','','inherit','closed','closed','','88-revision-v1','','','2022-05-16 06:26:35','2022-05-16 06:26:35','',88,'https://demoweblinks.in/aahan/?p=89',0,'revision','',0),(90,1,'2022-05-16 06:26:35','2022-05-16 06:26:35','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n\n\n/** Start Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n.envato-block__preview{overflow: visible;}\n/* Material Button Click Effect */\n.envato-kit-140-material-hit .menu-item a,\n.envato-kit-140-material-button .elementor-button{\n  background-position: center;\n  transition: background 0.8s;\n}\n.envato-kit-140-material-hit .menu-item a:hover,\n.envato-kit-140-material-button .elementor-button:hover{\n  background: radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;\n}\n.envato-kit-140-material-hit .menu-item a:active,\n.envato-kit-140-material-button .elementor-button:active{\n  background-color: #FFF;\n  background-size: 100%;\n  transition: background 0s;\n}\n\n/* Field Shadow */\n.envato-kit-140-big-shadow-form .elementor-field-textual{\n	box-shadow: 0 20px 30px rgba(0,0,0, .05);\n}\n\n/* FAQ */\n.envato-kit-140-faq .elementor-accordion .elementor-accordion-item{\n	border-width: 0 0 1px !important;\n}\n\n/* Scrollable Columns */\n.envato-kit-140-scrollable{\n	 height: 100%;\n   overflow: auto;\n   overflow-x: hidden;\n}\n\n/* ImageBox: No Space */\n.envato-kit-140-imagebox-nospace:hover{\n	transform: scale(1.1);\n	transition: all 0.3s;\n}\n.envato-kit-140-imagebox-nospace figure{\n	line-height: 0;\n}\n\n.envato-kit-140-slide .elementor-slide-content{\n	background: #FFF;\n	margin-left: -60px;\n	padding: 1em;\n}\n.envato-kit-140-carousel .slick-active:not(.slick-current)  img{\n	padding: 20px !important;\n	transition: all .9s;\n}\n\n/** End Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n\n\n/** Start Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n.envato-kit-102-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n\n/** End Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n\n\n/** Start Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n.envato-kit-138-bracket .elementor-widget-container > *:before{\n	content:\"[\";\n	color:#ffab00;\n	display:inline-block;\n	margin-right:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n.envato-kit-138-bracket .elementor-widget-container > *:after{\n	content:\"]\";\n	color:#ffab00;\n	display:inline-block;\n	margin-left:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n/** End Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n\n\n/** Start Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n.envato-block__preview{overflow: visible !important;}\n\n/** End Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n\n\n/** Start Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n.envato-kit-66-menu .e--pointer-framed .elementor-item:before{\n	border-radius:1px;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper{\n	position:relative;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit{\n	position:static;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit button{\n	position: absolute;\n    top: 50%;\n    right: 6px;\n    transform: translate(0, -50%);\n		-moz-transform: translate(0, -50%);\n		-webmit-transform: translate(0, -50%);\n}\n\n.envato-kit-66-testi-slider .elementor-testimonial__footer{\n	margin-top: -60px !important;\n	z-index: 99;\n  position: relative;\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	left:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev:before{\n	display:block;\n	margin-top:0px;\n	margin-left:0px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	right:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next:before{\n	display:block;\n	margin-top:-5px;\n	margin-right:-5px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-orangetext{\n	color:#f4511e;\n}\n\n.envato-kit-66-countdown .elementor-countdown-label{\n	display:inline-block !important;\n	border:2px solid rgba(255,255,255,0.2);\n	padding:9px 20px;\n}\n\n/** End Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n\n\n/** Start Block Kit CSS: 33-3-f2d4515681d0cdeb2a000d0405e47669 **/\n\n.envato-kit-30-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n.envato-kit-30-div-rotate{\n	transform: rotate(90deg);\n}\n\n/** End Block Kit CSS: 33-3-f2d4515681d0cdeb2a000d0405e47669 **/\n\n','twentytwenty','','publish','closed','closed','','twentytwenty','','','2022-05-18 12:19:00','2022-05-18 12:19:00','',0,'https://demoweblinks.in/aahan/2022/05/16/twentytwenty/',0,'custom_css','',0),(91,1,'2022-05-16 06:26:35','2022-05-16 06:26:35','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-16 06:26:35','2022-05-16 06:26:35','',90,'https://demoweblinks.in/aahan/?p=91',0,'revision','',0),(93,1,'2022-05-16 06:30:24','2022-05-16 06:30:24','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:30:24','2022-05-16 06:30:24','',11,'https://demoweblinks.in/aahan/?p=93',0,'revision','',0),(94,1,'2022-05-16 06:30:24','2022-05-16 06:30:24','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:30:24','2022-05-16 06:30:24','',11,'https://demoweblinks.in/aahan/?p=94',0,'revision','',0),(95,1,'2022-05-16 06:30:25','2022-05-16 06:30:25','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Show More\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:30:25','2022-05-16 06:30:25','',11,'https://demoweblinks.in/aahan/?p=95',0,'revision','',0),(96,1,'2022-05-16 06:31:11','2022-05-16 06:31:11','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwenty','','','2022-05-16 06:31:11','2022-05-16 06:31:11','',0,'https://demoweblinks.in/aahan/2022/05/16/wp-global-styles-twentytwenty/',0,'wp_global_styles','',0),(97,1,'2022-05-16 06:33:28','2022-05-16 06:33:28','[give_receipt]','Donation Confirmation','','publish','closed','closed','','donation-confirmation','','','2022-05-16 06:33:28','2022-05-16 06:33:28','',0,'https://demoweblinks.in/aahan/donation-confirmation/',0,'page','',0),(98,1,'2022-05-16 06:33:28','2022-05-16 06:33:28','We&#039;re sorry, your donation failed to process. Please try again or contact site support.','Donation Failed','','publish','closed','closed','','donation-failed','','','2022-05-16 06:33:28','2022-05-16 06:33:28','',0,'https://demoweblinks.in/aahan/donation-failed/',0,'page','',0),(99,1,'2022-05-16 06:33:28','2022-05-16 06:33:28','<!-- wp:give/donor-dashboard {\"align\":\"wide\"} /-->','Donor Dashboard','','publish','close','close','','donor-dashboard','','','2022-05-16 06:33:28','2022-05-16 06:33:28','',0,'https://demoweblinks.in/aahan/donor-dashboard/',0,'page','',0),(100,1,'2022-05-16 06:34:32','2022-05-16 06:34:32','','Donation Form','','publish','closed','closed','','donation-form','','','2022-05-16 06:34:32','2022-05-16 06:34:32','',0,'https://demoweblinks.in/aahan/donations/donation-form/',0,'give_forms','',0),(101,1,'2022-05-16 06:37:04','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-16 06:37:04','0000-00-00 00:00:00','',0,'https://demoweblinks.in/aahan/?post_type=give_forms&p=101',0,'give_forms','',0),(102,1,'2022-05-16 06:37:08','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-16 06:37:08','0000-00-00 00:00:00','',0,'https://demoweblinks.in/aahan/?post_type=give_forms&p=102',0,'give_forms','',0),(104,1,'2022-05-16 06:41:08','2022-05-16 06:41:08','[crowdfundly-organization]','Organization','','publish','closed','closed','','crowdfundly-organization','','','2022-05-16 06:41:09','2022-05-16 06:41:09','',0,'https://demoweblinks.in/aahan/crowdfundly-organization/',0,'page','',0),(105,1,'2022-05-16 06:41:08','2022-05-16 06:41:08','[crowdfundly-all-campaigns]','All Campaigns','','publish','closed','closed','','crowdfundly-all-campaigns','','','2022-05-16 06:41:09','2022-05-16 06:41:09','',104,'https://demoweblinks.in/aahan/crowdfundly-organization/crowdfundly-all-campaigns/',0,'page','',0),(106,1,'2022-05-16 06:41:08','2022-05-16 06:41:08','[crowdfundly-campaign]','Single Campaign','','publish','closed','closed','','crowdfundly-single-campaign','','','2022-05-16 06:41:09','2022-05-16 06:41:09','',104,'https://demoweblinks.in/aahan/crowdfundly-organization/crowdfundly-single-campaign/',0,'page','',0),(107,1,'2022-05-16 06:41:09','2022-05-16 06:41:09','[crowdfundly-organization]','Organization','','inherit','closed','closed','','104-revision-v1','','','2022-05-16 06:41:09','2022-05-16 06:41:09','',104,'https://demoweblinks.in/aahan/?p=107',0,'revision','',0),(108,1,'2022-05-16 06:41:09','2022-05-16 06:41:09','[crowdfundly-all-campaigns]','All Campaigns','','inherit','closed','closed','','105-revision-v1','','','2022-05-16 06:41:09','2022-05-16 06:41:09','',105,'https://demoweblinks.in/aahan/?p=108',0,'revision','',0),(109,1,'2022-05-16 06:41:09','2022-05-16 06:41:09','[crowdfundly-campaign]','Single Campaign','','inherit','closed','closed','','106-revision-v1','','','2022-05-16 06:41:09','2022-05-16 06:41:09','',106,'https://demoweblinks.in/aahan/?p=109',0,'revision','',0),(110,1,'2022-05-16 06:49:21','2022-05-16 06:49:21','','hector-martinez-110928-unsplash.jpg','','inherit','open','closed','','hector-martinez-110928-unsplash-jpg','','','2022-05-16 06:49:21','2022-05-16 06:49:21','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hector-martinez-110928-unsplash.jpg',0,'attachment','image/jpeg',0),(111,1,'2022-05-16 06:49:26','2022-05-16 06:49:26','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Address List</h2>		\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Help Center\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Community\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Forums\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Meetups\n											</a>\n									</li>\n						</ul>\n			<h2>Company Inc.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>','Footer','','publish','closed','closed','','footer','','','2022-05-16 06:49:27','2022-05-16 06:49:27','',0,'https://demoweblinks.in/aahan/?elementor_library=footer',0,'elementor_library','',0),(112,1,'2022-05-16 06:49:27','2022-05-16 06:49:27','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Address List</h2>		\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Help Center\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Community\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Forums\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Meetups\n											</a>\n									</li>\n						</ul>\n			<h2>Company Inc.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>','Footer','','inherit','closed','closed','','111-revision-v1','','','2022-05-16 06:49:27','2022-05-16 06:49:27','',111,'https://demoweblinks.in/aahan/?p=112',0,'revision','',0),(113,1,'2022-05-16 06:49:27','2022-05-16 06:49:27','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-16 06:49:27','2022-05-16 06:49:27','',90,'https://demoweblinks.in/aahan/?p=113',0,'revision','',0),(114,1,'2022-05-16 06:56:19','2022-05-16 06:56:19','<p>Copyright © 2018. Company Name</p>','Copyright','','publish','closed','closed','','copyright','','','2022-05-16 06:56:19','2022-05-16 06:56:19','',0,'https://demoweblinks.in/aahan/?elementor_library=copyright',0,'elementor_library','',0),(115,1,'2022-05-16 06:56:19','2022-05-16 06:56:19','<p>Copyright © 2018. Company Name</p>','Copyright','','inherit','closed','closed','','114-revision-v1','','','2022-05-16 06:56:19','2022-05-16 06:56:19','',114,'https://demoweblinks.in/aahan/?p=115',0,'revision','',0),(116,1,'2022-05-16 06:56:19','2022-05-16 06:56:19','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-16 06:56:19','2022-05-16 06:56:19','',90,'https://demoweblinks.in/aahan/?p=116',0,'revision','',0),(117,1,'2022-05-16 06:59:43','2022-05-16 06:59:43','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Show More\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:59:43','2022-05-16 06:59:43','',11,'https://demoweblinks.in/aahan/?p=117',0,'revision','',0),(118,1,'2022-05-16 06:59:43','2022-05-16 06:59:43','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Show More\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 		\n			<a href=\"#\" role=\"button\">\n						Donate  Now\n					</a>\n			<a href=\"#\" role=\"button\">\n						Watch Video\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h5>From The Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:59:43','2022-05-16 06:59:43','',11,'https://demoweblinks.in/aahan/?p=118',0,'revision','',0),(119,1,'2022-05-16 06:59:44','2022-05-16 06:59:44','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n			<button></button>\n        <ul id=\"menu-primary-menu\"><li id=\"menu-item-77\"><a href=\"https://demoweblinks.in/aahan/about-us/\">About us</a></li>\n<li id=\"menu-item-76\"><a href=\"https://demoweblinks.in/aahan/our-programs/\">Our Programs</a></li>\n<li id=\"menu-item-75\"><a href=\"https://demoweblinks.in/aahan/success-stories/\">Success Stories</a></li>\n<li id=\"menu-item-74\"><a href=\"https://demoweblinks.in/aahan/covid-initiatives/\">Covid Initiatives</a></li>\n<li id=\"menu-item-73\"><a href=\"https://demoweblinks.in/aahan/recognition/\">Recognition</a></li>\n<li id=\"menu-item-72\"><a href=\"https://demoweblinks.in/aahan/blogs/\">Blogs</a></li>\n<li id=\"menu-item-71\"><a href=\"https://demoweblinks.in/aahan/get-involved/\">Get Involved</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demoweblinks.in/aahan/contact-us/\">Contact Us</a></li>\n</ul>\n                <a href=\"https://demoweblinks.in/aahan\"></a>\n                <button></button>\n			<h2>Gallery</h2>		\n             <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>     \n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 06:59:44','2022-05-16 06:59:44','',11,'https://demoweblinks.in/aahan/?p=119',0,'revision','',0),(120,1,'2022-05-16 07:00:48','2022-05-16 07:00:48','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n			<button></button>\n        <ul id=\"menu-primary-menu\"><li id=\"menu-item-77\"><a href=\"https://demoweblinks.in/aahan/about-us/\">About us</a></li>\n<li id=\"menu-item-76\"><a href=\"https://demoweblinks.in/aahan/our-programs/\">Our Programs</a></li>\n<li id=\"menu-item-75\"><a href=\"https://demoweblinks.in/aahan/success-stories/\">Success Stories</a></li>\n<li id=\"menu-item-74\"><a href=\"https://demoweblinks.in/aahan/covid-initiatives/\">Covid Initiatives</a></li>\n<li id=\"menu-item-73\"><a href=\"https://demoweblinks.in/aahan/recognition/\">Recognition</a></li>\n<li id=\"menu-item-72\"><a href=\"https://demoweblinks.in/aahan/blogs/\">Blogs</a></li>\n<li id=\"menu-item-71\"><a href=\"https://demoweblinks.in/aahan/get-involved/\">Get Involved</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demoweblinks.in/aahan/contact-us/\">Contact Us</a></li>\n</ul>\n                <a href=\"https://demoweblinks.in/aahan\"></a>\n                <button></button>\n			<h2>Gallery</h2>		\n             <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>     \n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:00:48','2022-05-16 07:00:48','',11,'https://demoweblinks.in/aahan/?p=120',0,'revision','',0),(121,1,'2022-05-16 07:00:48','2022-05-16 07:00:48','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n			<button></button>\n        <ul id=\"menu-primary-menu\"><li id=\"menu-item-77\"><a href=\"https://demoweblinks.in/aahan/about-us/\">About us</a></li>\n<li id=\"menu-item-76\"><a href=\"https://demoweblinks.in/aahan/our-programs/\">Our Programs</a></li>\n<li id=\"menu-item-75\"><a href=\"https://demoweblinks.in/aahan/success-stories/\">Success Stories</a></li>\n<li id=\"menu-item-74\"><a href=\"https://demoweblinks.in/aahan/covid-initiatives/\">Covid Initiatives</a></li>\n<li id=\"menu-item-73\"><a href=\"https://demoweblinks.in/aahan/recognition/\">Recognition</a></li>\n<li id=\"menu-item-72\"><a href=\"https://demoweblinks.in/aahan/blogs/\">Blogs</a></li>\n<li id=\"menu-item-71\"><a href=\"https://demoweblinks.in/aahan/get-involved/\">Get Involved</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demoweblinks.in/aahan/contact-us/\">Contact Us</a></li>\n</ul>\n                <a href=\"https://demoweblinks.in/aahan\"></a>\n                <button></button>\n			<h2>Gallery</h2>		\n             <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f66042d10\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>     \n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:00:48','2022-05-16 07:00:48','',11,'https://demoweblinks.in/aahan/?p=121',0,'revision','',0),(122,1,'2022-05-16 07:00:48','2022-05-16 07:00:48','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n			<button></button>\n        <ul id=\"menu-primary-menu\"><li id=\"menu-item-77\"><a href=\"https://demoweblinks.in/aahan/about-us/\">About us</a></li>\n<li id=\"menu-item-76\"><a href=\"https://demoweblinks.in/aahan/our-programs/\">Our Programs</a></li>\n<li id=\"menu-item-75\"><a href=\"https://demoweblinks.in/aahan/success-stories/\">Success Stories</a></li>\n<li id=\"menu-item-74\"><a href=\"https://demoweblinks.in/aahan/covid-initiatives/\">Covid Initiatives</a></li>\n<li id=\"menu-item-73\"><a href=\"https://demoweblinks.in/aahan/recognition/\">Recognition</a></li>\n<li id=\"menu-item-72\"><a href=\"https://demoweblinks.in/aahan/blogs/\">Blogs</a></li>\n<li id=\"menu-item-71\"><a href=\"https://demoweblinks.in/aahan/get-involved/\">Get Involved</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demoweblinks.in/aahan/contact-us/\">Contact Us</a></li>\n</ul>\n                <a href=\"https://demoweblinks.in/aahan\"></a>\n                <button></button>\n			<h2>Gallery</h2>		\n             <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>     \n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:00:48','2022-05-16 07:00:48','',11,'https://demoweblinks.in/aahan/?p=122',0,'revision','',0),(123,1,'2022-05-16 07:04:13','2022-05-16 07:04:13','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Footer','','publish','closed','closed','','footer-2','','','2022-05-16 07:04:13','2022-05-16 07:04:13','',0,'https://demoweblinks.in/aahan/?elementor_library=footer-2',0,'elementor_library','',0),(124,1,'2022-05-16 07:04:13','2022-05-16 07:04:13','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Footer','','inherit','closed','closed','','123-revision-v1','','','2022-05-16 07:04:13','2022-05-16 07:04:13','',123,'https://demoweblinks.in/aahan/?p=124',0,'revision','',0),(125,1,'2022-05-16 07:04:13','2022-05-16 07:04:13','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n\n\n/** Start Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n.envato-block__preview{overflow: visible;}\n/* Material Button Click Effect */\n.envato-kit-140-material-hit .menu-item a,\n.envato-kit-140-material-button .elementor-button{\n  background-position: center;\n  transition: background 0.8s;\n}\n.envato-kit-140-material-hit .menu-item a:hover,\n.envato-kit-140-material-button .elementor-button:hover{\n  background: radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;\n}\n.envato-kit-140-material-hit .menu-item a:active,\n.envato-kit-140-material-button .elementor-button:active{\n  background-color: #FFF;\n  background-size: 100%;\n  transition: background 0s;\n}\n\n/* Field Shadow */\n.envato-kit-140-big-shadow-form .elementor-field-textual{\n	box-shadow: 0 20px 30px rgba(0,0,0, .05);\n}\n\n/* FAQ */\n.envato-kit-140-faq .elementor-accordion .elementor-accordion-item{\n	border-width: 0 0 1px !important;\n}\n\n/* Scrollable Columns */\n.envato-kit-140-scrollable{\n	 height: 100%;\n   overflow: auto;\n   overflow-x: hidden;\n}\n\n/* ImageBox: No Space */\n.envato-kit-140-imagebox-nospace:hover{\n	transform: scale(1.1);\n	transition: all 0.3s;\n}\n.envato-kit-140-imagebox-nospace figure{\n	line-height: 0;\n}\n\n.envato-kit-140-slide .elementor-slide-content{\n	background: #FFF;\n	margin-left: -60px;\n	padding: 1em;\n}\n.envato-kit-140-carousel .slick-active:not(.slick-current)  img{\n	padding: 20px !important;\n	transition: all .9s;\n}\n\n/** End Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-16 07:04:13','2022-05-16 07:04:13','',90,'https://demoweblinks.in/aahan/?p=125',0,'revision','',0),(126,1,'2022-05-16 07:12:12','2022-05-16 07:12:12','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n			<button></button>\n        <ul id=\"menu-primary-menu\"><li id=\"menu-item-77\"><a href=\"https://demoweblinks.in/aahan/about-us/\">About us</a></li>\n<li id=\"menu-item-76\"><a href=\"https://demoweblinks.in/aahan/our-programs/\">Our Programs</a></li>\n<li id=\"menu-item-75\"><a href=\"https://demoweblinks.in/aahan/success-stories/\">Success Stories</a></li>\n<li id=\"menu-item-74\"><a href=\"https://demoweblinks.in/aahan/covid-initiatives/\">Covid Initiatives</a></li>\n<li id=\"menu-item-73\"><a href=\"https://demoweblinks.in/aahan/recognition/\">Recognition</a></li>\n<li id=\"menu-item-72\"><a href=\"https://demoweblinks.in/aahan/blogs/\">Blogs</a></li>\n<li id=\"menu-item-71\"><a href=\"https://demoweblinks.in/aahan/get-involved/\">Get Involved</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demoweblinks.in/aahan/contact-us/\">Contact Us</a></li>\n</ul>\n                <a href=\"https://demoweblinks.in/aahan\"></a>\n                <button></button>\n			<h2>Gallery</h2>		\n             <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>     \n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:12:12','2022-05-16 07:12:12','',11,'https://demoweblinks.in/aahan/?p=126',0,'revision','',0),(127,1,'2022-05-16 07:12:12','2022-05-16 07:12:12','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Links List</h2>		\n			<button></button>\n        <ul id=\"menu-primary-menu\"><li id=\"menu-item-77\"><a href=\"https://demoweblinks.in/aahan/about-us/\">About us</a></li>\n<li id=\"menu-item-76\"><a href=\"https://demoweblinks.in/aahan/our-programs/\">Our Programs</a></li>\n<li id=\"menu-item-75\"><a href=\"https://demoweblinks.in/aahan/success-stories/\">Success Stories</a></li>\n<li id=\"menu-item-74\"><a href=\"https://demoweblinks.in/aahan/covid-initiatives/\">Covid Initiatives</a></li>\n<li id=\"menu-item-73\"><a href=\"https://demoweblinks.in/aahan/recognition/\">Recognition</a></li>\n<li id=\"menu-item-72\"><a href=\"https://demoweblinks.in/aahan/blogs/\">Blogs</a></li>\n<li id=\"menu-item-71\"><a href=\"https://demoweblinks.in/aahan/get-involved/\">Get Involved</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demoweblinks.in/aahan/contact-us/\">Contact Us</a></li>\n</ul>\n                <a href=\"https://demoweblinks.in/aahan\"></a>\n                <button></button>\n			<h2>Gallery</h2>		\n             <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>      <img src=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\" >   <h5></h5> <a href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/images/placeholder.png\"data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"jkit_gallery_lightbox_jeg_module__1_6281f6a09ad0c\" ></a><a href=\"\"data-elementor-open-lightbox=\"no\"></a>     \n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:12:12','2022-05-16 07:12:12','',11,'https://demoweblinks.in/aahan/?p=127',0,'revision','',0),(128,1,'2022-05-16 07:12:12','2022-05-16 07:12:12','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:12:12','2022-05-16 07:12:12','',11,'https://demoweblinks.in/aahan/?p=128',0,'revision','',0),(130,1,'2022-05-16 07:23:19','2022-05-16 07:23:19','','1','','publish','closed','closed','','give-donation-1','','','2022-05-16 07:23:19','2022-05-16 07:23:19','',0,'https://demoweblinks.in/aahan/?post_type=give_payment&#038;p=130',0,'give_payment','',0),(131,1,'2022-05-16 07:23:33','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-16 07:23:33','0000-00-00 00:00:00','',0,'https://demoweblinks.in/aahan/?post_type=give_forms&p=131',0,'give_forms','',0),(132,1,'2022-05-16 07:23:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-16 07:23:34','0000-00-00 00:00:00','',0,'https://demoweblinks.in/aahan/?post_type=give_forms&p=132',0,'give_forms','',0),(133,1,'2022-05-16 07:32:26','2022-05-16 07:32:26','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>© Website Name. All rights reserved</p>','Copyright','','publish','closed','closed','','copyright-2','','','2022-05-16 07:32:26','2022-05-16 07:32:26','',0,'https://demoweblinks.in/aahan/?elementor_library=copyright-2',0,'elementor_library','',0),(134,1,'2022-05-16 07:32:26','2022-05-16 07:32:26','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>© Website Name. All rights reserved</p>','Copyright','','inherit','closed','closed','','133-revision-v1','','','2022-05-16 07:32:26','2022-05-16 07:32:26','',133,'https://demoweblinks.in/aahan/?p=134',0,'revision','',0),(135,1,'2022-05-16 07:32:26','2022-05-16 07:32:26','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n\n\n/** Start Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n.envato-block__preview{overflow: visible;}\n/* Material Button Click Effect */\n.envato-kit-140-material-hit .menu-item a,\n.envato-kit-140-material-button .elementor-button{\n  background-position: center;\n  transition: background 0.8s;\n}\n.envato-kit-140-material-hit .menu-item a:hover,\n.envato-kit-140-material-button .elementor-button:hover{\n  background: radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;\n}\n.envato-kit-140-material-hit .menu-item a:active,\n.envato-kit-140-material-button .elementor-button:active{\n  background-color: #FFF;\n  background-size: 100%;\n  transition: background 0s;\n}\n\n/* Field Shadow */\n.envato-kit-140-big-shadow-form .elementor-field-textual{\n	box-shadow: 0 20px 30px rgba(0,0,0, .05);\n}\n\n/* FAQ */\n.envato-kit-140-faq .elementor-accordion .elementor-accordion-item{\n	border-width: 0 0 1px !important;\n}\n\n/* Scrollable Columns */\n.envato-kit-140-scrollable{\n	 height: 100%;\n   overflow: auto;\n   overflow-x: hidden;\n}\n\n/* ImageBox: No Space */\n.envato-kit-140-imagebox-nospace:hover{\n	transform: scale(1.1);\n	transition: all 0.3s;\n}\n.envato-kit-140-imagebox-nospace figure{\n	line-height: 0;\n}\n\n.envato-kit-140-slide .elementor-slide-content{\n	background: #FFF;\n	margin-left: -60px;\n	padding: 1em;\n}\n.envato-kit-140-carousel .slick-active:not(.slick-current)  img{\n	padding: 20px !important;\n	transition: all .9s;\n}\n\n/** End Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n\n\n/** Start Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n.envato-kit-102-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n\n/** End Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-16 07:32:26','2022-05-16 07:32:26','',90,'https://demoweblinks.in/aahan/?p=135',0,'revision','',0),(136,1,'2022-05-16 07:42:28','2022-05-16 07:42:28','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:42:28','2022-05-16 07:42:28','',11,'https://demoweblinks.in/aahan/?p=136',0,'revision','',0),(137,1,'2022-05-16 07:42:28','2022-05-16 07:42:28','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{margin-right:-8px;margin-left:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:8px;margin-left:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{width:auto;left:auto;right:auto;position:relative;height:100%;border-top:0;border-bottom:0;border-right:0;border-left-width:1px;border-style:solid;right:-8px}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{position:absolute;bottom:0;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{-ms-flex-item-align:center;align-self:center;padding-left:5px}.elementor-widget .elementor-icon-list-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget .elementor-icon-list-icon svg{width:var(--e-icon-list-icon-size,1em);height:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{width:1.25em;font-size:var(--e-icon-list-icon-size)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{right:0}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{right:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-items{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-items{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{left:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{right:0}}</style>		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-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>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>Become A Proud Volunteer Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua.		\n			<a href=\"#\" role=\"button\">\n						Join Now\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n		<p>Copyright © 2018. Company Name</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:42:28','2022-05-16 07:42:28','',11,'https://demoweblinks.in/aahan/?p=137',0,'revision','',0),(138,1,'2022-05-16 07:42:29','2022-05-16 07:42:29','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:42:29','2022-05-16 07:42:29','',11,'https://demoweblinks.in/aahan/?p=138',0,'revision','',0),(140,1,'2022-05-16 07:46:54','2022-05-16 07:46:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:46:54','2022-05-16 07:46:54','',11,'https://demoweblinks.in/aahan/?p=140',0,'revision','',0),(141,1,'2022-05-16 07:46:54','2022-05-16 07:46:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:46:54','2022-05-16 07:46:54','',11,'https://demoweblinks.in/aahan/?p=141',0,'revision','',0),(142,1,'2022-05-16 07:46:55','2022-05-16 07:46:55','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 07:46:55','2022-05-16 07:46:55','',11,'https://demoweblinks.in/aahan/?p=142',0,'revision','',0),(144,1,'2022-05-16 08:09:53','2022-05-16 08:09:53','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 08:09:53','2022-05-16 08:09:53','',11,'https://demoweblinks.in/aahan/?p=144',0,'revision','',0),(145,1,'2022-05-16 08:09:53','2022-05-16 08:09:53','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTIuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 08:09:53','2022-05-16 08:09:53','',11,'https://demoweblinks.in/aahan/?p=145',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (146,1,'2022-05-16 08:09:54','2022-05-16 08:09:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 08:09:54','2022-05-16 08:09:54','',11,'https://demoweblinks.in/aahan/?p=146',0,'revision','',0),(148,1,'2022-05-16 09:12:30','2022-05-16 09:12:30','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:12:30','2022-05-16 09:12:30','',11,'https://demoweblinks.in/aahan/?p=148',0,'revision','',0),(149,1,'2022-05-16 09:12:30','2022-05-16 09:12:30','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Causes\n					</a>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<p>Opening Hours</p>		\n			Sunday - Saturday		\n					<ul>\n							<li>\n										08.00 AM - 15.00 PM\n									</li>\n						</ul>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:12:30','2022-05-16 09:12:30','',11,'https://demoweblinks.in/aahan/?p=149',0,'revision','',0),(150,1,'2022-05-16 09:12:31','2022-05-16 09:12:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:12:31','2022-05-16 09:12:31','',11,'https://demoweblinks.in/aahan/?p=150',0,'revision','',0),(152,1,'2022-05-16 09:15:14','2022-05-16 09:15:14','','background-2.jpg','','inherit','open','closed','','background-2-jpg','','','2022-05-16 09:15:14','2022-05-16 09:15:14','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg',0,'attachment','image/jpeg',0),(153,1,'2022-05-16 09:15:21','2022-05-16 09:15:21','','african-american-girl-hands-holding-a-marble-made-heart.jpg','','inherit','open','closed','','african-american-girl-hands-holding-a-marble-made-heart-jpg','','','2022-05-16 09:15:21','2022-05-16 09:15:21','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg',0,'attachment','image/jpeg',0),(154,1,'2022-05-16 09:15:38','2022-05-16 09:15:38','','Image-1.png','','inherit','open','closed','','image-1-png','','','2022-05-16 09:15:38','2022-05-16 09:15:38','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-1.png',0,'attachment','image/png',0),(155,1,'2022-05-16 09:15:40','2022-05-16 09:15:40','','image-3.png','','inherit','open','closed','','image-3-png','','','2022-05-16 09:15:40','2022-05-16 09:15:40','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/image-3.png',0,'attachment','image/png',0),(156,1,'2022-05-16 09:15:42','2022-05-16 09:15:42','','Image.jpg','','inherit','open','closed','','image-jpg','','','2022-05-16 09:15:42','2022-05-16 09:15:42','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image.jpg',0,'attachment','image/jpeg',0),(157,1,'2022-05-16 09:15:45','2022-05-16 09:15:45','','Testimonial.jpg','','inherit','open','closed','','testimonial-jpg','','','2022-05-16 09:15:45','2022-05-16 09:15:45','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Testimonial.jpg',0,'attachment','image/jpeg',0),(158,1,'2022-05-16 09:15:45','2022-05-16 09:15:45','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2022-05-16 09:15:45','2022-05-16 09:15:45','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder.png',0,'attachment','image/png',0),(159,1,'2022-05-16 09:15:46','2022-05-16 09:15:46','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2022-05-16 09:15:46','2022-05-16 09:15:46','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-1.png',0,'attachment','image/png',0),(160,1,'2022-05-16 09:15:47','2022-05-16 09:15:47','','placeholder.png','','inherit','open','closed','','placeholder-png-3','','','2022-05-16 09:15:47','2022-05-16 09:15:47','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-2.png',0,'attachment','image/png',0),(161,1,'2022-05-16 09:15:48','2022-05-16 09:15:48','','placeholder.png','','inherit','open','closed','','placeholder-png-4','','','2022-05-16 09:15:48','2022-05-16 09:15:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-3.png',0,'attachment','image/png',0),(162,1,'2022-05-16 09:15:48','2022-05-16 09:15:48','','placeholder.png','','inherit','open','closed','','placeholder-png-5','','','2022-05-16 09:15:48','2022-05-16 09:15:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-4.png',0,'attachment','image/png',0),(163,1,'2022-05-16 09:15:49','2022-05-16 09:15:49','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Causes</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\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			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>Our Feedbacks</h5>		\n			<h2>What They Say</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>','Causes','','publish','closed','closed','','causes','','','2022-05-16 09:15:49','2022-05-16 09:15:49','',0,'https://demoweblinks.in/aahan/?elementor_library=causes',0,'elementor_library','',0),(164,1,'2022-05-16 09:15:49','2022-05-16 09:15:49','','Causes','','inherit','closed','closed','','163-revision-v1','','','2022-05-16 09:15:49','2022-05-16 09:15:49','',163,'https://demoweblinks.in/aahan/?p=164',0,'revision','',0),(165,1,'2022-05-16 09:15:49','2022-05-16 09:15:49','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Causes</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\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			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>Our Feedbacks</h5>		\n			<h2>What They Say</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>','Causes','','inherit','closed','closed','','163-revision-v1','','','2022-05-16 09:15:49','2022-05-16 09:15:49','',163,'https://demoweblinks.in/aahan/?p=165',0,'revision','',0),(166,1,'2022-05-16 09:19:11','2022-05-16 09:19:11','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:19:11','2022-05-16 09:19:11','',11,'https://demoweblinks.in/aahan/?p=166',0,'revision','',0),(167,1,'2022-05-16 09:19:11','2022-05-16 09:19:11','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>List Of Events</h5>		\n			<h2>Upcoming Events</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:19:11','2022-05-16 09:19:11','',11,'https://demoweblinks.in/aahan/?p=167',0,'revision','',0),(168,1,'2022-05-16 09:19:11','2022-05-16 09:19:11','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:19:11','2022-05-16 09:19:11','',11,'https://demoweblinks.in/aahan/?p=168',0,'revision','',0),(169,1,'2022-05-16 09:22:29','2022-05-16 09:22:29','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:22:29','2022-05-16 09:22:29','',11,'https://demoweblinks.in/aahan/?p=169',0,'revision','',0),(170,1,'2022-05-16 09:22:29','2022-05-16 09:22:29','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:22:29','2022-05-16 09:22:29','',11,'https://demoweblinks.in/aahan/?p=170',0,'revision','',0),(171,1,'2022-05-16 09:22:30','2022-05-16 09:22:30','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 09:22:30','2022-05-16 09:22:30','',11,'https://demoweblinks.in/aahan/?p=171',0,'revision','',0),(173,1,'2022-05-16 10:37:47','2022-05-16 10:37:47','','cropped-Aahan-logo-1','','inherit','open','closed','','cropped-aahan-logo-1','','','2022-05-16 10:37:47','2022-05-16 10:37:47','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/cropped-Aahan-logo-1.webp',0,'attachment','image/webp',0),(174,1,'2022-05-16 10:37:58','2022-05-16 10:37:58','https://demoweblinks.in/aahan/wp-content/uploads/2022/05/cropped-cropped-Aahan-logo-1.webp','cropped-cropped-Aahan-logo-1.webp','','inherit','open','closed','','cropped-cropped-aahan-logo-1-webp','','','2022-05-16 10:37:58','2022-05-16 10:37:58','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/cropped-cropped-Aahan-logo-1.webp',0,'attachment','image/webp',0),(175,1,'2022-05-16 10:38:34','2022-05-16 10:38:34','https://demoweblinks.in/aahan/wp-content/uploads/2022/05/cropped-cropped-cropped-Aahan-logo-1.webp','cropped-cropped-cropped-Aahan-logo-1.webp','','inherit','open','closed','','cropped-cropped-cropped-aahan-logo-1-webp','','','2022-05-16 10:38:34','2022-05-16 10:38:34','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/cropped-cropped-cropped-Aahan-logo-1.webp',0,'attachment','image/webp',0),(176,1,'2022-05-16 10:38:39','2022-05-16 10:38:39','{\n    \"site_icon\": {\n        \"value\": 175,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-16 10:38:39\"\n    },\n    \"twentytwenty::custom_logo\": {\n        \"value\": 174,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-16 10:38:39\"\n    }\n}','','','trash','closed','closed','','48ee4a16-3283-4de8-ab59-55dd1869b2b3','','','2022-05-16 10:38:39','2022-05-16 10:38:39','',0,'https://demoweblinks.in/aahan/2022/05/16/48ee4a16-3283-4de8-ab59-55dd1869b2b3/',0,'customize_changeset','',0),(177,1,'2022-05-16 10:40:21','2022-05-16 10:40:21','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 10:40:21','2022-05-16 10:40:21','',11,'https://demoweblinks.in/aahan/?p=177',0,'revision','',0),(178,1,'2022-05-16 10:40:21','2022-05-16 10:40:21','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 10:40:21','2022-05-16 10:40:21','',11,'https://demoweblinks.in/aahan/?p=178',0,'revision','',0),(179,1,'2022-05-16 10:40:22','2022-05-16 10:40:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 10:40:22','2022-05-16 10:40:22','',11,'https://demoweblinks.in/aahan/?p=179',0,'revision','',0),(180,1,'2022-05-16 10:41:35','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-16 10:41:35','0000-00-00 00:00:00','',0,'https://demoweblinks.in/aahan/?post_type=elementor_icons&p=180',0,'elementor_icons','',0),(182,1,'2022-05-16 11:02:07','2022-05-16 11:02:07','','c6b2edbe2e2775780e9b95a426fcbf64','','inherit','open','closed','','c6b2edbe2e2775780e9b95a426fcbf64','','','2022-05-16 11:02:07','2022-05-16 11:02:07','',11,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/c6b2edbe2e2775780e9b95a426fcbf64.jpg',0,'attachment','image/jpeg',0),(183,1,'2022-05-16 11:10:25','2022-05-16 11:10:25','','orange_white_solid_colorful_65839_1920x1080','','inherit','open','closed','','orange_white_solid_colorful_65839_1920x1080','','','2022-05-16 11:10:25','2022-05-16 11:10:25','',11,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/orange_white_solid_colorful_65839_1920x1080.jpg',0,'attachment','image/jpeg',0),(184,1,'2022-05-16 11:38:22','2022-05-16 11:38:22','','lee-miller-47629-unsplash.jpg','','inherit','open','closed','','lee-miller-47629-unsplash-jpg','','','2022-05-16 11:38:22','2022-05-16 11:38:22','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/lee-miller-47629-unsplash.jpg',0,'attachment','image/jpeg',0),(185,1,'2022-05-16 11:38:29','2022-05-16 11:38:29','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Subheading</h3>		\n			<h2>Subscribe now for\nfresh content.</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>','Newsletter Subscription (with Form)','','publish','closed','closed','','newsletter-subscription-with-form','','','2022-05-16 11:38:29','2022-05-16 11:38:29','',0,'https://demoweblinks.in/aahan/?elementor_library=newsletter-subscription-with-form',0,'elementor_library','',0),(186,1,'2022-05-16 11:38:29','2022-05-16 11:38:29','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Subheading</h3>		\n			<h2>Subscribe now for\nfresh content.</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>','Newsletter Subscription (with Form)','','inherit','closed','closed','','185-revision-v1','','','2022-05-16 11:38:29','2022-05-16 11:38:29','',185,'https://demoweblinks.in/aahan/?p=186',0,'revision','',0),(187,1,'2022-05-16 11:38:29','2022-05-16 11:38:29','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n\n\n/** Start Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n.envato-block__preview{overflow: visible;}\n/* Material Button Click Effect */\n.envato-kit-140-material-hit .menu-item a,\n.envato-kit-140-material-button .elementor-button{\n  background-position: center;\n  transition: background 0.8s;\n}\n.envato-kit-140-material-hit .menu-item a:hover,\n.envato-kit-140-material-button .elementor-button:hover{\n  background: radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;\n}\n.envato-kit-140-material-hit .menu-item a:active,\n.envato-kit-140-material-button .elementor-button:active{\n  background-color: #FFF;\n  background-size: 100%;\n  transition: background 0s;\n}\n\n/* Field Shadow */\n.envato-kit-140-big-shadow-form .elementor-field-textual{\n	box-shadow: 0 20px 30px rgba(0,0,0, .05);\n}\n\n/* FAQ */\n.envato-kit-140-faq .elementor-accordion .elementor-accordion-item{\n	border-width: 0 0 1px !important;\n}\n\n/* Scrollable Columns */\n.envato-kit-140-scrollable{\n	 height: 100%;\n   overflow: auto;\n   overflow-x: hidden;\n}\n\n/* ImageBox: No Space */\n.envato-kit-140-imagebox-nospace:hover{\n	transform: scale(1.1);\n	transition: all 0.3s;\n}\n.envato-kit-140-imagebox-nospace figure{\n	line-height: 0;\n}\n\n.envato-kit-140-slide .elementor-slide-content{\n	background: #FFF;\n	margin-left: -60px;\n	padding: 1em;\n}\n.envato-kit-140-carousel .slick-active:not(.slick-current)  img{\n	padding: 20px !important;\n	transition: all .9s;\n}\n\n/** End Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n\n\n/** Start Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n.envato-kit-102-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n\n/** End Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n\n\n/** Start Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n.envato-kit-138-bracket .elementor-widget-container > *:before{\n	content:\"[\";\n	color:#ffab00;\n	display:inline-block;\n	margin-right:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n.envato-kit-138-bracket .elementor-widget-container > *:after{\n	content:\"]\";\n	color:#ffab00;\n	display:inline-block;\n	margin-left:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n/** End Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-16 11:38:29','2022-05-16 11:38:29','',90,'https://demoweblinks.in/aahan/?p=187',0,'revision','',0),(188,1,'2022-05-16 11:47:36','2022-05-16 11:47:36','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 11:47:36','2022-05-16 11:47:36','',11,'https://demoweblinks.in/aahan/?p=188',0,'revision','',0),(189,1,'2022-05-16 11:47:36','2022-05-16 11:47:36','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Wilson, KS 67490\n									</li>\n								<li>\n										test@test.com\n									</li>\n								<li>\n										24/7 Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Github\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Bitbucket\n											</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						Logo					\n				</h3>\n									<p>\n						Tagline					</p>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>All contacts</h2>		\n					<ul>\n							<li>\n										123, Any Street North<br>Your City Name<br>Country Name. P.O 3554\n									</li>\n								<li>\n										+1 234 567 8902\n									</li>\n								<li>\n										contact@yoursite.com<br>help@yoursite.com\n									</li>\n						</ul>\n			<h2>Social Networks</h2>		\n					<ul>\n							<li>\n										yourfbusername\n									</li>\n								<li>\n										@twitterhandle\n									</li>\n								<li>\n										insta_account\n									</li>\n								<li>\n										plusprofilename\n									</li>\n								<li>\n										username\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 11:47:36','2022-05-16 11:47:36','',11,'https://demoweblinks.in/aahan/?p=189',0,'revision','',0),(190,1,'2022-05-16 11:47:37','2022-05-16 11:47:37','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 11:47:37','2022-05-16 11:47:37','',11,'https://demoweblinks.in/aahan/?p=190',0,'revision','',0),(192,1,'2022-05-16 12:04:54','2022-05-16 12:04:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:04:54','2022-05-16 12:04:54','',11,'https://demoweblinks.in/aahan/?p=192',0,'revision','',0),(193,1,'2022-05-16 12:04:54','2022-05-16 12:04:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:04:54','2022-05-16 12:04:54','',11,'https://demoweblinks.in/aahan/?p=193',0,'revision','',0),(194,1,'2022-05-16 12:04:55','2022-05-16 12:04:55','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:04:55','2022-05-16 12:04:55','',11,'https://demoweblinks.in/aahan/?p=194',0,'revision','',0),(196,1,'2022-05-16 12:14:37','2022-05-16 12:14:37','','Kit Styles: Humanite – Charity & Donation Elementor Template Kit','','inherit','closed','closed','','7-revision-v1','','','2022-05-16 12:14:37','2022-05-16 12:14:37','',7,'https://demoweblinks.in/aahan/?p=196',0,'revision','',0),(197,1,'2022-05-16 12:16:25','2022-05-16 12:16:25','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:16:25','2022-05-16 12:16:25','',11,'https://demoweblinks.in/aahan/?p=197',0,'revision','',0),(198,1,'2022-05-16 12:16:25','2022-05-16 12:16:25','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:16:25','2022-05-16 12:16:25','',11,'https://demoweblinks.in/aahan/?p=198',0,'revision','',0),(199,1,'2022-05-16 12:16:26','2022-05-16 12:16:26','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:16:26','2022-05-16 12:16:26','',11,'https://demoweblinks.in/aahan/?p=199',0,'revision','',0),(200,1,'2022-05-16 12:16:59','2022-05-16 12:16:59','','Kit Styles: Humanite – Charity & Donation Elementor Template Kit','','inherit','closed','closed','','7-revision-v1','','','2022-05-16 12:16:59','2022-05-16 12:16:59','',7,'https://demoweblinks.in/aahan/?p=200',0,'revision','',0),(202,1,'2022-05-16 12:29:31','2022-05-16 12:29:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:29:31','2022-05-16 12:29:31','',11,'https://demoweblinks.in/aahan/?p=202',0,'revision','',0),(203,1,'2022-05-16 12:29:31','2022-05-16 12:29:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>New School For Childrens</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Care</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:29:31','2022-05-16 12:29:31','',11,'https://demoweblinks.in/aahan/?p=203',0,'revision','',0),(204,1,'2022-05-16 12:29:32','2022-05-16 12:29:32','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:29:32','2022-05-16 12:29:32','',11,'https://demoweblinks.in/aahan/?p=204',0,'revision','',0),(205,1,'2022-05-16 12:31:04','2022-05-16 12:31:04','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:31:04','2022-05-16 12:31:04','',11,'https://demoweblinks.in/aahan/?p=205',0,'revision','',0),(206,1,'2022-05-16 12:31:04','2022-05-16 12:31:04','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:31:04','2022-05-16 12:31:04','',11,'https://demoweblinks.in/aahan/?p=206',0,'revision','',0),(207,1,'2022-05-16 12:31:05','2022-05-16 12:31:05','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 12:31:05','2022-05-16 12:31:05','',11,'https://demoweblinks.in/aahan/?p=207',0,'revision','',0),(208,1,'2022-05-16 13:26:30','2022-05-16 13:26:30','','top-header-scaled (1)','','inherit','open','closed','','top-header-scaled-1','','','2022-05-16 13:26:30','2022-05-16 13:26:30','',11,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/top-header-scaled-1.jpg',0,'attachment','image/jpeg',0),(209,1,'2022-05-16 13:26:53','2022-05-16 13:26:53','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 13:26:53','2022-05-16 13:26:53','',11,'https://demoweblinks.in/aahan/?p=209',0,'revision','',0),(210,1,'2022-05-16 13:26:53','2022-05-16 13:26:53','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 13:26:53','2022-05-16 13:26:53','',11,'https://demoweblinks.in/aahan/?p=210',0,'revision','',0),(211,1,'2022-05-16 13:26:53','2022-05-16 13:26:53','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 13:26:53','2022-05-16 13:26:53','',11,'https://demoweblinks.in/aahan/?p=211',0,'revision','',0),(213,1,'2022-05-16 13:34:58','2022-05-16 13:34:58','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 13:34:58','2022-05-16 13:34:58','',11,'https://demoweblinks.in/aahan/?p=213',0,'revision','',0),(214,1,'2022-05-16 13:34:58','2022-05-16 13:34:58','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 13:34:58','2022-05-16 13:34:58','',11,'https://demoweblinks.in/aahan/?p=214',0,'revision','',0),(215,1,'2022-05-16 13:34:58','2022-05-16 13:34:58','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-16 13:34:58','2022-05-16 13:34:58','',11,'https://demoweblinks.in/aahan/?p=215',0,'revision','',0),(216,1,'2022-05-17 04:15:46','2022-05-17 04:15:46','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 04:15:46','2022-05-17 04:15:46','',11,'https://demoweblinks.in/aahan/?p=216',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (217,1,'2022-05-17 04:15:46','2022-05-17 04:15:46','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 04:15:46','2022-05-17 04:15:46','',11,'https://demoweblinks.in/aahan/?p=217',0,'revision','',0),(218,1,'2022-05-17 04:15:47','2022-05-17 04:15:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 04:15:47','2022-05-17 04:15:47','',11,'https://demoweblinks.in/aahan/?p=218',0,'revision','',0),(220,1,'2022-05-17 05:05:56','2022-05-17 05:05:56','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:05:56','2022-05-17 05:05:56','',11,'https://demoweblinks.in/aahan/?p=220',0,'revision','',0),(221,1,'2022-05-17 05:05:56','2022-05-17 05:05:56','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h3>Fund Raised</h3>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						All Events\n					</a>\n			<h5>Our Feedbacks</h5>		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:05:56','2022-05-17 05:05:56','',11,'https://demoweblinks.in/aahan/?p=221',0,'revision','',0),(222,1,'2022-05-17 05:05:56','2022-05-17 05:05:56','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:05:56','2022-05-17 05:05:56','',11,'https://demoweblinks.in/aahan/?p=222',0,'revision','',0),(223,1,'2022-05-17 05:09:58','2022-05-17 05:09:58','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:09:58','2022-05-17 05:09:58','',11,'https://demoweblinks.in/aahan/?p=223',0,'revision','',0),(224,1,'2022-05-17 05:09:59','2022-05-17 05:09:59','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:09:59','2022-05-17 05:09:59','',11,'https://demoweblinks.in/aahan/?p=224',0,'revision','',0),(225,1,'2022-05-17 05:09:59','2022-05-17 05:09:59','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:09:59','2022-05-17 05:09:59','',11,'https://demoweblinks.in/aahan/?p=225',0,'revision','',0),(226,1,'2022-05-17 05:39:31','2022-05-17 05:39:31','<a href=\"#\" role=\"button\">\n						Donate\n					</a>','primary header','','publish','closed','closed','','primary-header','','','2022-05-17 05:39:31','2022-05-17 05:39:31','',0,'https://demoweblinks.in/aahan/?elementor_library=primary-header',0,'elementor_library','',0),(227,1,'2022-05-17 05:39:31','2022-05-17 05:39:31','','primary header','','inherit','closed','closed','','226-revision-v1','','','2022-05-17 05:39:31','2022-05-17 05:39:31','',226,'https://demoweblinks.in/aahan/?p=227',0,'revision','',0),(228,1,'2022-05-17 05:39:31','2022-05-17 05:39:31','<a href=\"#\" role=\"button\">\n						Donate\n					</a>','primary header','','inherit','closed','closed','','226-revision-v1','','','2022-05-17 05:39:31','2022-05-17 05:39:31','',226,'https://demoweblinks.in/aahan/?p=228',0,'revision','',0),(229,1,'2022-05-17 05:39:51','2022-05-17 05:39:51','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','header top banner','','publish','closed','closed','','header-top-banner','','','2022-05-17 05:39:51','2022-05-17 05:39:51','',0,'https://demoweblinks.in/aahan/?elementor_library=header-top-banner',0,'elementor_library','',0),(230,1,'2022-05-17 05:39:51','2022-05-17 05:39:51','','header top banner','','inherit','closed','closed','','229-revision-v1','','','2022-05-17 05:39:51','2022-05-17 05:39:51','',229,'https://demoweblinks.in/aahan/?p=230',0,'revision','',0),(231,1,'2022-05-17 05:39:51','2022-05-17 05:39:51','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','header top banner','','inherit','closed','closed','','229-revision-v1','','','2022-05-17 05:39:51','2022-05-17 05:39:51','',229,'https://demoweblinks.in/aahan/?p=231',0,'revision','',0),(232,1,'2022-05-17 05:40:20','2022-05-17 05:40:20','','#menu','','publish','closed','closed','','menu','','','2022-05-17 05:40:20','2022-05-17 05:40:20','',0,'https://demoweblinks.in/aahan/?elementor_library=menu',0,'elementor_library','',0),(233,1,'2022-05-17 05:40:20','2022-05-17 05:40:20','','#menu','','inherit','closed','closed','','232-revision-v1','','','2022-05-17 05:40:20','2022-05-17 05:40:20','',232,'https://demoweblinks.in/aahan/?p=233',0,'revision','',0),(234,1,'2022-05-17 05:40:20','2022-05-17 05:40:20','','#menu','','inherit','closed','closed','','232-revision-v1','','','2022-05-17 05:40:20','2022-05-17 05:40:20','',232,'https://demoweblinks.in/aahan/?p=234',0,'revision','',0),(235,1,'2022-05-17 05:40:39','2022-05-17 05:40:39','<a href=\"#\" role=\"button\">\n						Donate\n					</a>','Menu donate button','','publish','closed','closed','','menu-donate-button','','','2022-05-17 05:40:39','2022-05-17 05:40:39','',0,'https://demoweblinks.in/aahan/?elementor_library=menu-donate-button',0,'elementor_library','',0),(236,1,'2022-05-17 05:40:39','2022-05-17 05:40:39','','Menu donate button','','inherit','closed','closed','','235-revision-v1','','','2022-05-17 05:40:39','2022-05-17 05:40:39','',235,'https://demoweblinks.in/aahan/?p=236',0,'revision','',0),(237,1,'2022-05-17 05:40:39','2022-05-17 05:40:39','<a href=\"#\" role=\"button\">\n						Donate\n					</a>','Menu donate button','','inherit','closed','closed','','235-revision-v1','','','2022-05-17 05:40:39','2022-05-17 05:40:39','',235,'https://demoweblinks.in/aahan/?p=237',0,'revision','',0),(238,1,'2022-05-17 05:40:51','2022-05-17 05:40:51','','menu logo','','publish','closed','closed','','menu-logo','','','2022-05-17 05:40:51','2022-05-17 05:40:51','',0,'https://demoweblinks.in/aahan/?elementor_library=menu-logo',0,'elementor_library','',0),(239,1,'2022-05-17 05:40:51','2022-05-17 05:40:51','','menu logo','','inherit','closed','closed','','238-revision-v1','','','2022-05-17 05:40:51','2022-05-17 05:40:51','',238,'https://demoweblinks.in/aahan/?p=239',0,'revision','',0),(240,1,'2022-05-17 05:40:51','2022-05-17 05:40:51','','menu logo','','inherit','closed','closed','','238-revision-v1','','','2022-05-17 05:40:51','2022-05-17 05:40:51','',238,'https://demoweblinks.in/aahan/?p=240',0,'revision','',0),(241,1,'2022-05-17 05:41:17','2022-05-17 05:41:17','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03ZGQzMjJlZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03ZGQzMjJlZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTdkZDMyMmVkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtN2RkMzIyZWQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTdkZDMyMmVkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtN2RkMzIyZWQifQ%3D%3D\">\n														</a>','primary footer','','publish','closed','closed','','primary-footer','','','2022-05-17 05:41:17','2022-05-17 05:41:17','',0,'https://demoweblinks.in/aahan/?elementor_library=primary-footer',0,'elementor_library','',0),(242,1,'2022-05-17 05:41:17','2022-05-17 05:41:17','','primary footer','','inherit','closed','closed','','241-revision-v1','','','2022-05-17 05:41:17','2022-05-17 05:41:17','',241,'https://demoweblinks.in/aahan/?p=242',0,'revision','',0),(243,1,'2022-05-17 05:41:17','2022-05-17 05:41:17','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03ZGQzMjJlZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03ZGQzMjJlZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTdkZDMyMmVkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtN2RkMzIyZWQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTdkZDMyMmVkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-7dd322ed\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtN2RkMzIyZWQifQ%3D%3D\">\n														</a>','primary footer','','inherit','closed','closed','','241-revision-v1','','','2022-05-17 05:41:17','2022-05-17 05:41:17','',241,'https://demoweblinks.in/aahan/?p=243',0,'revision','',0),(244,1,'2022-05-17 05:41:37','2022-05-17 05:41:37','<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>','footer about us','','publish','closed','closed','','footer-about-us','','','2022-05-17 05:41:37','2022-05-17 05:41:37','',0,'https://demoweblinks.in/aahan/?elementor_library=footer-about-us',0,'elementor_library','',0),(245,1,'2022-05-17 05:41:37','2022-05-17 05:41:37','','footer about us','','inherit','closed','closed','','244-revision-v1','','','2022-05-17 05:41:37','2022-05-17 05:41:37','',244,'https://demoweblinks.in/aahan/?p=245',0,'revision','',0),(246,1,'2022-05-17 05:41:37','2022-05-17 05:41:37','<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>','footer about us','','inherit','closed','closed','','244-revision-v1','','','2022-05-17 05:41:37','2022-05-17 05:41:37','',244,'https://demoweblinks.in/aahan/?p=246',0,'revision','',0),(247,1,'2022-05-17 05:41:57','2022-05-17 05:41:57','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>','footer all contacts','','publish','closed','closed','','footer-all-contacts','','','2022-05-17 05:41:57','2022-05-17 05:41:57','',0,'https://demoweblinks.in/aahan/?elementor_library=footer-all-contacts',0,'elementor_library','',0),(248,1,'2022-05-17 05:41:57','2022-05-17 05:41:57','','footer all contacts','','inherit','closed','closed','','247-revision-v1','','','2022-05-17 05:41:57','2022-05-17 05:41:57','',247,'https://demoweblinks.in/aahan/?p=248',0,'revision','',0),(249,1,'2022-05-17 05:41:57','2022-05-17 05:41:57','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>','footer all contacts','','inherit','closed','closed','','247-revision-v1','','','2022-05-17 05:41:57','2022-05-17 05:41:57','',247,'https://demoweblinks.in/aahan/?p=249',0,'revision','',0),(250,1,'2022-05-17 05:42:16','2022-05-17 05:42:16','','footer subscribe button','','publish','closed','closed','','footer-subscribe-button','','','2022-05-18 06:09:04','2022-05-18 06:09:04','',0,'https://demoweblinks.in/aahan/?elementor_library=footer-subscribe-button',0,'elementor_library','',0),(251,1,'2022-05-17 05:42:16','2022-05-17 05:42:16','','footer subscribe button','','inherit','closed','closed','','250-revision-v1','','','2022-05-17 05:42:16','2022-05-17 05:42:16','',250,'https://demoweblinks.in/aahan/?p=251',0,'revision','',0),(252,1,'2022-05-17 05:42:16','2022-05-17 05:42:16','','footer subscribe button','','inherit','closed','closed','','250-revision-v1','','','2022-05-17 05:42:16','2022-05-17 05:42:16','',250,'https://demoweblinks.in/aahan/?p=252',0,'revision','',0),(253,1,'2022-05-17 05:42:31','2022-05-17 05:42:31','<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0zNTM3YzRhOSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0zNTM3YzRhOSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTM1MzdjNGE5In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMzUzN2M0YTkifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTM1MzdjNGE5In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMzUzN2M0YTkifQ%3D%3D\">\n														</a>','footer gallery','','publish','closed','closed','','footer-gallery','','','2022-05-17 05:42:31','2022-05-17 05:42:31','',0,'https://demoweblinks.in/aahan/?elementor_library=footer-gallery',0,'elementor_library','',0),(254,1,'2022-05-17 05:42:31','2022-05-17 05:42:31','','footer gallery','','inherit','closed','closed','','253-revision-v1','','','2022-05-17 05:42:31','2022-05-17 05:42:31','',253,'https://demoweblinks.in/aahan/?p=254',0,'revision','',0),(255,1,'2022-05-17 05:42:31','2022-05-17 05:42:31','<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0zNTM3YzRhOSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0zNTM3YzRhOSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTM1MzdjNGE5In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMzUzN2M0YTkifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTM1MzdjNGE5In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-3537c4a9\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMzUzN2M0YTkifQ%3D%3D\">\n														</a>','footer gallery','','inherit','closed','closed','','253-revision-v1','','','2022-05-17 05:42:31','2022-05-17 05:42:31','',253,'https://demoweblinks.in/aahan/?p=255',0,'revision','',0),(256,1,'2022-05-17 05:43:09','2022-05-17 05:43:09','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>© Website Name. All rights reserved</p>','footer copyright','','publish','closed','closed','','footer-copyright','','','2022-05-17 05:43:09','2022-05-17 05:43:09','',0,'https://demoweblinks.in/aahan/?elementor_library=footer-copyright',0,'elementor_library','',0),(257,1,'2022-05-17 05:43:09','2022-05-17 05:43:09','','footer copyright','','inherit','closed','closed','','256-revision-v1','','','2022-05-17 05:43:09','2022-05-17 05:43:09','',256,'https://demoweblinks.in/aahan/?p=257',0,'revision','',0),(258,1,'2022-05-17 05:43:09','2022-05-17 05:43:09','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><p>© Website Name. All rights reserved</p>','footer copyright','','inherit','closed','closed','','256-revision-v1','','','2022-05-17 05:43:09','2022-05-17 05:43:09','',256,'https://demoweblinks.in/aahan/?p=258',0,'revision','',0),(259,1,'2022-05-17 05:43:26','2022-05-17 05:43:26','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:43:26','2022-05-17 05:43:26','',11,'https://demoweblinks.in/aahan/?p=259',0,'revision','',0),(260,1,'2022-05-17 05:43:26','2022-05-17 05:43:26','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05Zjc1ZjhjIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTlmNzVmOGMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-9f75f8c\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOWY3NWY4YyJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:43:26','2022-05-17 05:43:26','',11,'https://demoweblinks.in/aahan/?p=260',0,'revision','',0),(261,1,'2022-05-17 05:43:26','2022-05-17 05:43:26','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 05:43:26','2022-05-17 05:43:26','',11,'https://demoweblinks.in/aahan/?p=261',0,'revision','',0),(263,1,'2022-05-17 06:13:27','2022-05-17 06:13:27','','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 06:13:27','2022-05-17 06:13:27','',17,'https://demoweblinks.in/aahan/?p=263',0,'revision','',0),(264,1,'2022-05-17 06:13:27','2022-05-17 06:13:27','','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 06:13:27','2022-05-17 06:13:27','',17,'https://demoweblinks.in/aahan/?p=264',0,'revision','',0),(265,1,'2022-05-17 06:13:28','2022-05-17 06:13:28','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Causes</h2>		\n					<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\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			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>Our Feedbacks</h5>		\n			<h2>What They Say</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 06:13:28','2022-05-17 06:13:28','',17,'https://demoweblinks.in/aahan/?p=265',0,'revision','',0),(267,1,'2022-05-17 06:28:29','2022-05-17 06:28:29','','david-kovalenko-447548-unsplash.jpg','','inherit','open','closed','','david-kovalenko-447548-unsplash-jpg','','','2022-05-17 06:28:29','2022-05-17 06:28:29','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash.jpg',0,'attachment','image/jpeg',0),(268,1,'2022-05-17 06:28:36','2022-05-17 06:28:36','','ivan-bandura-532042-unsplash.jpg','','inherit','open','closed','','ivan-bandura-532042-unsplash-jpg','','','2022-05-17 06:28:36','2022-05-17 06:28:36','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg',0,'attachment','image/jpeg',0),(269,1,'2022-05-17 06:28:44','2022-05-17 06:28:44','','chuttersnap-176806-unsplash.jpg','','inherit','open','closed','','chuttersnap-176806-unsplash-jpg','','','2022-05-17 06:28:44','2022-05-17 06:28:44','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/chuttersnap-176806-unsplash.jpg',0,'attachment','image/jpeg',0),(270,1,'2022-05-17 06:28:49','2022-05-17 06:28:49','','calculator-clipboard-coffee-cup-1001763.jpg','','inherit','open','closed','','calculator-clipboard-coffee-cup-1001763-jpg','','','2022-05-17 06:28:49','2022-05-17 06:28:49','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/calculator-clipboard-coffee-cup-1001763.jpg',0,'attachment','image/jpeg',0),(271,1,'2022-05-17 06:29:35','2022-05-17 06:29:35','','debby-hudson-1056837-unsplash.jpg','','inherit','open','closed','','debby-hudson-1056837-unsplash-jpg','','','2022-05-17 06:29:35','2022-05-17 06:29:35','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash.jpg',0,'attachment','image/jpeg',0),(272,1,'2022-05-17 06:29:37','2022-05-17 06:29:37','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Our Services</h2>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola.</p>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Altera deseruisse\n									</li>\n								<li>\n										Per autem iracundia\n									</li>\n								<li>\n										Utamur iudicabit vix\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						action button\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"435\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1024x768.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1536x1152.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1200x900.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/chuttersnap-176806-unsplash-poxq87c2f0s31dzwlux8n2supf5uq11uvof4reo5xg.jpg\" title=\"chuttersnap-176806-unsplash.jpg\" alt=\"chuttersnap-176806-unsplash.jpg\" /></figure><h3>Ne quis mediocrem sit</h3>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.</p>		\n			<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/calculator-clipboard-coffee-cup-1001763-poxq8c19d6yinft2ueydhjm5ociosikikbok5sh72c.jpg\" title=\"calculator-clipboard-coffee-cup-1001763.jpg\" alt=\"calculator-clipboard-coffee-cup-1001763.jpg\" /></figure><h3>Ne quis mediocrem sit</h3>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.</p>		\n			<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/debby-hudson-1056837-unsplash-poxq9j9u3klphi29txn7o8pd02lkmlc629ow8ip344.jpg\" title=\"debby-hudson-1056837-unsplash.jpg\" alt=\"debby-hudson-1056837-unsplash.jpg\" /></figure><h3>Ne quis mediocrem sit</h3>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.</p>','Services','','publish','closed','closed','','services','','','2022-05-17 06:29:38','2022-05-17 06:29:38','',0,'https://demoweblinks.in/aahan/?elementor_library=services',0,'elementor_library','',0),(273,1,'2022-05-17 06:29:38','2022-05-17 06:29:38','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Our Services</h2>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola.</p>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Altera deseruisse\n									</li>\n								<li>\n										Per autem iracundia\n									</li>\n								<li>\n										Utamur iudicabit vix\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						action button\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"435\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1024x768.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1536x1152.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash-1200x900.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/david-kovalenko-447548-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/chuttersnap-176806-unsplash-poxq87c2f0s31dzwlux8n2supf5uq11uvof4reo5xg.jpg\" title=\"chuttersnap-176806-unsplash.jpg\" alt=\"chuttersnap-176806-unsplash.jpg\" /></figure><h3>Ne quis mediocrem sit</h3>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.</p>		\n			<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/calculator-clipboard-coffee-cup-1001763-poxq8c19d6yinft2ueydhjm5ociosikikbok5sh72c.jpg\" title=\"calculator-clipboard-coffee-cup-1001763.jpg\" alt=\"calculator-clipboard-coffee-cup-1001763.jpg\" /></figure><h3>Ne quis mediocrem sit</h3>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.</p>		\n			<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/debby-hudson-1056837-unsplash-poxq9j9u3klphi29txn7o8pd02lkmlc629ow8ip344.jpg\" title=\"debby-hudson-1056837-unsplash.jpg\" alt=\"debby-hudson-1056837-unsplash.jpg\" /></figure><h3>Ne quis mediocrem sit</h3>		\n		<p>Ne quis mediocrem sit, dolor reprimique nec id, quo no scaevola vituperata. Sed ea delectus senserit forensibus, vis dicant eirmod eripuit id.</p>','Services','','inherit','closed','closed','','272-revision-v1','','','2022-05-17 06:29:38','2022-05-17 06:29:38','',272,'https://demoweblinks.in/aahan/?p=273',0,'revision','',0),(274,1,'2022-05-17 06:46:23','2022-05-17 06:46:23','','pexels-photo-556068.jpeg','','inherit','open','closed','','pexels-photo-556068-jpeg','','','2022-05-17 06:46:23','2022-05-17 06:46:23','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-556068.jpeg',0,'attachment','image/jpeg',0),(275,1,'2022-05-17 06:46:24','2022-05-17 06:46:24','','darkside.png','','inherit','open','closed','','darkside-png','','','2022-05-17 06:46:24','2022-05-17 06:46:24','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/darkside.png',0,'attachment','image/png',0),(276,1,'2022-05-17 06:46:24','2022-05-17 06:46:24','','digit.png','','inherit','open','closed','','digit-png','','','2022-05-17 06:46:24','2022-05-17 06:46:24','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/digit.png',0,'attachment','image/png',0),(277,1,'2022-05-17 06:46:26','2022-05-17 06:46:26','','bolier.png','','inherit','open','closed','','bolier-png','','','2022-05-17 06:46:26','2022-05-17 06:46:26','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/bolier.png',0,'attachment','image/png',0),(278,1,'2022-05-17 06:46:27','2022-05-17 06:46:27','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Carousel</h5>		\n			<h2>Testimonials</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n						I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.					\n						<img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/darkside.png\" alt=\"John Doe\">\n								<cite>John DoeCEO</cite>			\n						I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.					\n						<img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/digit.png\" alt=\"John Doe\">\n								<cite>John DoeCEO</cite>			\n						I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.					\n						<img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/bolier.png\" alt=\"John Doe\">\n								<cite>John DoeCEO</cite>','Testimonial Slider','','publish','closed','closed','','testimonial-slider','','','2022-05-17 06:46:27','2022-05-17 06:46:27','',0,'https://demoweblinks.in/aahan/?elementor_library=testimonial-slider',0,'elementor_library','',0),(279,1,'2022-05-17 06:46:27','2022-05-17 06:46:27','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Carousel</h5>		\n			<h2>Testimonials</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n						I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.					\n						<img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/darkside.png\" alt=\"John Doe\">\n								<cite>John DoeCEO</cite>			\n						I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.					\n						<img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/digit.png\" alt=\"John Doe\">\n								<cite>John DoeCEO</cite>			\n						I am slide content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.					\n						<img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/bolier.png\" alt=\"John Doe\">\n								<cite>John DoeCEO</cite>','Testimonial Slider','','inherit','closed','closed','','278-revision-v1','','','2022-05-17 06:46:27','2022-05-17 06:46:27','',278,'https://demoweblinks.in/aahan/?p=279',0,'revision','',0),(280,1,'2022-05-17 06:47:52','2022-05-17 06:47:52','','linebgoverlay.png','','inherit','open','closed','','linebgoverlay-png','','','2022-05-17 06:47:52','2022-05-17 06:47:52','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/linebgoverlay.png',0,'attachment','image/png',0),(281,1,'2022-05-17 06:47:53','2022-05-17 06:47:53','','jamie-street-105287-unsplash.jpg','','inherit','open','closed','','jamie-street-105287-unsplash-jpg','','','2022-05-17 06:47:53','2022-05-17 06:47:53','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/jamie-street-105287-unsplash.jpg',0,'attachment','image/jpeg',0),(282,1,'2022-05-17 06:47:57','2022-05-17 06:47:57','','edgar-chaparro-1056818-unsplash.jpg','','inherit','open','closed','','edgar-chaparro-1056818-unsplash-jpg','','','2022-05-17 06:47:57','2022-05-17 06:47:57','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/edgar-chaparro-1056818-unsplash.jpg',0,'attachment','image/jpeg',0),(283,1,'2022-05-17 06:47:58','2022-05-17 06:47:58','','aleksandar-jason-137349-unsplash.jpg','','inherit','open','closed','','aleksandar-jason-137349-unsplash-jpg','','','2022-05-17 06:47:58','2022-05-17 06:47:58','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aleksandar-jason-137349-unsplash.jpg',0,'attachment','image/jpeg',0),(284,1,'2022-05-17 06:48:02','2022-05-17 06:48:02','','xavier-teo-492427-unsplash.jpg','','inherit','open','closed','','xavier-teo-492427-unsplash-jpg','','','2022-05-17 06:48:02','2022-05-17 06:48:02','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/xavier-teo-492427-unsplash.jpg',0,'attachment','image/jpeg',0),(285,1,'2022-05-17 06:48:04','2022-05-17 06:48:04','','aideal-hwa-600523-unsplash.jpg','','inherit','open','closed','','aideal-hwa-600523-unsplash-jpg','','','2022-05-17 06:48:04','2022-05-17 06:48:04','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aideal-hwa-600523-unsplash.jpg',0,'attachment','image/jpeg',0),(286,1,'2022-05-17 06:48:05','2022-05-17 06:48:05','','nickey-kolev-544018-unsplash.jpg','','inherit','open','closed','','nickey-kolev-544018-unsplash-jpg','','','2022-05-17 06:48:05','2022-05-17 06:48:05','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/nickey-kolev-544018-unsplash.jpg',0,'attachment','image/jpeg',0),(287,1,'2022-05-17 06:48:06','2022-05-17 06:48:06','','halanna-halila-557324-unsplash.jpg','','inherit','open','closed','','halanna-halila-557324-unsplash-jpg','','','2022-05-17 06:48:06','2022-05-17 06:48:06','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/halanna-halila-557324-unsplash.jpg',0,'attachment','image/jpeg',0),(288,1,'2022-05-17 06:48:11','2022-05-17 06:48:11','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Our Portfolio</h1>		\n		Eu iusto dolorum pro, facer oportere duo ne. <br>Cum ei commune instructior. Ne dicat qualisque ullamcorper ius, <br>ubique dolorum consetetur in vis. Nisl commodo te sed.		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/jamie-street-105287-unsplash-poxr27csrboct615xs6ji0d4jkrwk7jm0beejhmnhs.jpg\" alt=\"jamie-street-105287-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/edgar-chaparro-1056818-unsplash-poxr2b45inti3lvpbtt1rzeyx49dezyjcu0cglh2sw.jpg\" alt=\"edgar-chaparro-1056818-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/aleksandar-jason-137349-unsplash-poxr2c1zphusf7uc6c7och6fii4qmp29oyntxvfomo.jpg\" alt=\"aleksandar-jason-137349-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/xavier-teo-492427-unsplash-poxr2ftcgtzxpnovkdu6mg89w1m7hhh71h9ruza3xs.jpg\" alt=\"xavier-teo-492427-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/aideal-hwa-600523-unsplash-poxr2hp0ui2icvm59enfrfr72tcxwvonpqkqtj7blc.jpg\" alt=\"aideal-hwa-600523-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/nickey-kolev-544018-unsplash-poxr2imv1c3sohks3x22bxino78b4kse1v88at5xf4.jpg\" alt=\"nickey-kolev-544018-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/halanna-halila-557324-unsplash-poxr2jkp865303jeyfgowfa49l3oc9w4dzvps34j8w.jpg\" alt=\"halanna-halila-557324-unsplash.jpg\" /></figure>			\n												Previous\n												Next','Image Gallery - Carousel','','publish','closed','closed','','image-gallery-carousel','','','2022-05-17 06:48:12','2022-05-17 06:48:12','',0,'https://demoweblinks.in/aahan/?elementor_library=image-gallery-carousel',0,'elementor_library','',0),(289,1,'2022-05-17 06:48:12','2022-05-17 06:48:12','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Our Portfolio</h1>		\n		Eu iusto dolorum pro, facer oportere duo ne. <br>Cum ei commune instructior. Ne dicat qualisque ullamcorper ius, <br>ubique dolorum consetetur in vis. Nisl commodo te sed.		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/jamie-street-105287-unsplash-poxr27csrboct615xs6ji0d4jkrwk7jm0beejhmnhs.jpg\" alt=\"jamie-street-105287-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/edgar-chaparro-1056818-unsplash-poxr2b45inti3lvpbtt1rzeyx49dezyjcu0cglh2sw.jpg\" alt=\"edgar-chaparro-1056818-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/aleksandar-jason-137349-unsplash-poxr2c1zphusf7uc6c7och6fii4qmp29oyntxvfomo.jpg\" alt=\"aleksandar-jason-137349-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/xavier-teo-492427-unsplash-poxr2ftcgtzxpnovkdu6mg89w1m7hhh71h9ruza3xs.jpg\" alt=\"xavier-teo-492427-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/aideal-hwa-600523-unsplash-poxr2hp0ui2icvm59enfrfr72tcxwvonpqkqtj7blc.jpg\" alt=\"aideal-hwa-600523-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/nickey-kolev-544018-unsplash-poxr2imv1c3sohks3x22bxino78b4kse1v88at5xf4.jpg\" alt=\"nickey-kolev-544018-unsplash.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/elementor/thumbs/halanna-halila-557324-unsplash-poxr2jkp865303jeyfgowfa49l3oc9w4dzvps34j8w.jpg\" alt=\"halanna-halila-557324-unsplash.jpg\" /></figure>			\n												Previous\n												Next','Image Gallery - Carousel','','inherit','closed','closed','','288-revision-v1','','','2022-05-17 06:48:12','2022-05-17 06:48:12','',288,'https://demoweblinks.in/aahan/?p=289',0,'revision','',0),(290,1,'2022-05-17 06:48:12','2022-05-17 06:48:12','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n\n\n/** Start Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n.envato-block__preview{overflow: visible;}\n/* Material Button Click Effect */\n.envato-kit-140-material-hit .menu-item a,\n.envato-kit-140-material-button .elementor-button{\n  background-position: center;\n  transition: background 0.8s;\n}\n.envato-kit-140-material-hit .menu-item a:hover,\n.envato-kit-140-material-button .elementor-button:hover{\n  background: radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;\n}\n.envato-kit-140-material-hit .menu-item a:active,\n.envato-kit-140-material-button .elementor-button:active{\n  background-color: #FFF;\n  background-size: 100%;\n  transition: background 0s;\n}\n\n/* Field Shadow */\n.envato-kit-140-big-shadow-form .elementor-field-textual{\n	box-shadow: 0 20px 30px rgba(0,0,0, .05);\n}\n\n/* FAQ */\n.envato-kit-140-faq .elementor-accordion .elementor-accordion-item{\n	border-width: 0 0 1px !important;\n}\n\n/* Scrollable Columns */\n.envato-kit-140-scrollable{\n	 height: 100%;\n   overflow: auto;\n   overflow-x: hidden;\n}\n\n/* ImageBox: No Space */\n.envato-kit-140-imagebox-nospace:hover{\n	transform: scale(1.1);\n	transition: all 0.3s;\n}\n.envato-kit-140-imagebox-nospace figure{\n	line-height: 0;\n}\n\n.envato-kit-140-slide .elementor-slide-content{\n	background: #FFF;\n	margin-left: -60px;\n	padding: 1em;\n}\n.envato-kit-140-carousel .slick-active:not(.slick-current)  img{\n	padding: 20px !important;\n	transition: all .9s;\n}\n\n/** End Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n\n\n/** Start Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n.envato-kit-102-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n\n/** End Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n\n\n/** Start Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n.envato-kit-138-bracket .elementor-widget-container > *:before{\n	content:\"[\";\n	color:#ffab00;\n	display:inline-block;\n	margin-right:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n.envato-kit-138-bracket .elementor-widget-container > *:after{\n	content:\"]\";\n	color:#ffab00;\n	display:inline-block;\n	margin-left:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n/** End Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n\n\n/** Start Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n.envato-block__preview{overflow: visible !important;}\n\n/** End Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-17 06:48:12','2022-05-17 06:48:12','',90,'https://demoweblinks.in/aahan/?p=290',0,'revision','',0),(291,1,'2022-05-17 07:04:22','2022-05-17 07:04:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Causes</h2>		\n					<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\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			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>Our Feedbacks</h5>		\n			<h2>What They Say</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:04:22','2022-05-17 07:04:22','',17,'https://demoweblinks.in/aahan/?p=291',0,'revision','',0),(292,1,'2022-05-17 07:04:22','2022-05-17 07:04:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Causes</h2>		\n					<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes\n									</li>\n						</ul>\n			<h5>Our Causes</h5>		\n			<h2>Give Us Now</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Care</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-A9QS3N7-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Bring Water To The Children</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\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			<h5>Help Us</h5>		\n			<h2> Your Donation Can Change Someone’s Life</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h5>Our Feedbacks</h5>		\n			<h2>What They Say</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Country</h3>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:04:22','2022-05-17 07:04:22','',17,'https://demoweblinks.in/aahan/?p=292',0,'revision','',0),(293,1,'2022-05-17 07:04:23','2022-05-17 07:04:23','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:04:23','2022-05-17 07:04:23','',17,'https://demoweblinks.in/aahan/?p=293',0,'revision','',0),(294,1,'2022-05-17 07:12:02','2022-05-17 07:12:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:12:02','2022-05-17 07:12:02','',17,'https://demoweblinks.in/aahan/?p=294',0,'revision','',0),(295,1,'2022-05-17 07:12:02','2022-05-17 07:12:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:12:02','2022-05-17 07:12:02','',17,'https://demoweblinks.in/aahan/?p=295',0,'revision','',0),(296,1,'2022-05-17 07:12:02','2022-05-17 07:12:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:12:02','2022-05-17 07:12:02','',17,'https://demoweblinks.in/aahan/?p=296',0,'revision','',0),(297,1,'2022-05-17 07:12:26','2022-05-17 07:12:26','','menu','','publish','closed','closed','','menu-2','','','2022-05-18 06:13:13','2022-05-18 06:13:13','',0,'https://demoweblinks.in/aahan/?elementor_library=menu-2',0,'elementor_library','',0),(298,1,'2022-05-17 07:12:26','2022-05-17 07:12:26','','menu','','inherit','closed','closed','','297-revision-v1','','','2022-05-17 07:12:26','2022-05-17 07:12:26','',297,'https://demoweblinks.in/aahan/?p=298',0,'revision','',0),(299,1,'2022-05-17 07:12:26','2022-05-17 07:12:26','','menu','','inherit','closed','closed','','297-revision-v1','','','2022-05-17 07:12:26','2022-05-17 07:12:26','',297,'https://demoweblinks.in/aahan/?p=299',0,'revision','',0),(301,1,'2022-05-17 07:14:34','2022-05-17 07:14:34','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 07:14:34','2022-05-17 07:14:34','',11,'https://demoweblinks.in/aahan/?p=301',0,'revision','',0),(302,1,'2022-05-17 07:14:34','2022-05-17 07:14:34','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 07:14:34','2022-05-17 07:14:34','',11,'https://demoweblinks.in/aahan/?p=302',0,'revision','',0),(303,1,'2022-05-17 07:14:35','2022-05-17 07:14:35','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-17 07:14:35','2022-05-17 07:14:35','',11,'https://demoweblinks.in/aahan/?p=303',0,'revision','',0),(304,1,'2022-05-17 07:15:49','2022-05-17 07:15:49','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:15:49','2022-05-17 07:15:49','',17,'https://demoweblinks.in/aahan/?p=304',0,'revision','',0),(305,1,'2022-05-17 07:15:49','2022-05-17 07:15:49','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:15:49','2022-05-17 07:15:49','',17,'https://demoweblinks.in/aahan/?p=305',0,'revision','',0),(306,1,'2022-05-17 07:15:49','2022-05-17 07:15:49','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:15:49','2022-05-17 07:15:49','',17,'https://demoweblinks.in/aahan/?p=306',0,'revision','',0),(307,1,'2022-05-17 07:17:12','2022-05-17 07:17:12','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:17:12','2022-05-17 07:17:12','',17,'https://demoweblinks.in/aahan/?p=307',0,'revision','',0),(308,1,'2022-05-17 07:17:12','2022-05-17 07:17:12','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3> People That Needs Medicine</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:17:12','2022-05-17 07:17:12','',17,'https://demoweblinks.in/aahan/?p=308',0,'revision','',0),(309,1,'2022-05-17 07:17:12','2022-05-17 07:17:12','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 07:17:12','2022-05-17 07:17:12','',17,'https://demoweblinks.in/aahan/?p=309',0,'revision','',0),(311,1,'2022-05-17 11:32:24','2022-05-17 11:32:24','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 11:32:24','2022-05-17 11:32:24','',17,'https://demoweblinks.in/aahan/?p=311',0,'revision','',0),(312,1,'2022-05-17 11:32:24','2022-05-17 11:32:24','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 11:32:24','2022-05-17 11:32:24','',17,'https://demoweblinks.in/aahan/?p=312',0,'revision','',0),(313,1,'2022-05-17 11:32:24','2022-05-17 11:32:24','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-17 11:32:24','2022-05-17 11:32:24','',17,'https://demoweblinks.in/aahan/?p=313',0,'revision','',0),(314,1,'2022-05-17 13:45:57','2022-05-17 13:45:57','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Causes Details</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes Details\n									</li>\n						</ul>\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h3>Latest Causes</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3> People That Needs  Medicine</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3> People That Needs Food</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3>Bring Water To The Children</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>','Our pgms','','publish','closed','closed','','our-pgms','','','2022-05-17 13:48:17','2022-05-17 13:48:17','',0,'https://demoweblinks.in/aahan/?page_id=314',0,'page','',0),(315,1,'2022-05-17 13:45:57','2022-05-17 13:45:57','','Our pgms','','inherit','closed','closed','','314-revision-v1','','','2022-05-17 13:45:57','2022-05-17 13:45:57','',314,'https://demoweblinks.in/aahan/?p=315',0,'revision','',0),(316,1,'2022-05-17 13:46:48','2022-05-17 13:46:48','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Causes Details</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes Details\n									</li>\n						</ul>\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h3>Latest Causes</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3> People That Needs  Medicine</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3> People That Needs Food</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3>Bring Water To The Children</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>','Causes Details','','publish','closed','closed','','causes-details','','','2022-05-17 13:46:49','2022-05-17 13:46:49','',0,'https://demoweblinks.in/aahan/?elementor_library=causes-details',0,'elementor_library','',0),(317,1,'2022-05-17 13:46:48','2022-05-17 13:46:48','','Causes Details','','inherit','closed','closed','','316-revision-v1','','','2022-05-17 13:46:48','2022-05-17 13:46:48','',316,'https://demoweblinks.in/aahan/?p=317',0,'revision','',0),(318,1,'2022-05-17 13:46:49','2022-05-17 13:46:49','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Causes Details</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes Details\n									</li>\n						</ul>\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h3>Latest Causes</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3> People That Needs  Medicine</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3> People That Needs Food</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3>Bring Water To The Children</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>','Causes Details','','inherit','closed','closed','','316-revision-v1','','','2022-05-17 13:46:49','2022-05-17 13:46:49','',316,'https://demoweblinks.in/aahan/?p=318',0,'revision','',0),(319,1,'2022-05-17 13:48:17','2022-05-17 13:48:17','','Our pgms','','inherit','closed','closed','','314-revision-v1','','','2022-05-17 13:48:17','2022-05-17 13:48:17','',314,'https://demoweblinks.in/aahan/?p=319',0,'revision','',0),(320,1,'2022-05-17 13:48:17','2022-05-17 13:48:17','','Our pgms','','inherit','closed','closed','','314-revision-v1','','','2022-05-17 13:48:17','2022-05-17 13:48:17','',314,'https://demoweblinks.in/aahan/?p=320',0,'revision','',0),(321,1,'2022-05-17 13:48:17','2022-05-17 13:48:17','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Causes Details</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes Details\n									</li>\n						</ul>\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h3>Latest Causes</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3> People That Needs  Medicine</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3> People That Needs Food</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>		\n			<h3>Bring Water To The Children</h3>		\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n			<h3>\n						$25,270 Raised\n				</h3>		\n			<h3>\n						$30,000 Goal\n				</h3>','Our pgms','','inherit','closed','closed','','314-revision-v1','','','2022-05-17 13:48:17','2022-05-17 13:48:17','',314,'https://demoweblinks.in/aahan/?p=321',0,'revision','',0),(322,1,'2022-05-18 04:27:31','2022-05-18 04:27:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:27:31','2022-05-18 04:27:31','',17,'https://demoweblinks.in/aahan/?p=322',0,'revision','',0),(323,1,'2022-05-18 04:27:31','2022-05-18 04:27:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:27:31','2022-05-18 04:27:31','',17,'https://demoweblinks.in/aahan/?p=323',0,'revision','',0),(324,1,'2022-05-18 04:27:31','2022-05-18 04:27:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:27:31','2022-05-18 04:27:31','',17,'https://demoweblinks.in/aahan/?p=324',0,'revision','',0),(325,1,'2022-05-18 04:28:08','2022-05-18 04:28:08','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Causes Details</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Causes Details\n									</li>\n						</ul>\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>','Our pgms','','inherit','closed','closed','','314-autosave-v1','','','2022-05-18 04:28:08','2022-05-18 04:28:08','',314,'https://demoweblinks.in/aahan/?p=325',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (326,1,'2022-05-18 04:40:01','2022-05-18 04:40:01','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:40:01','2022-05-18 04:40:01','',17,'https://demoweblinks.in/aahan/?p=326',0,'revision','',0),(327,1,'2022-05-18 04:40:01','2022-05-18 04:40:01','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>The focus areas are:</h3>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:40:01','2022-05-18 04:40:01','',17,'https://demoweblinks.in/aahan/?p=327',0,'revision','',0),(328,1,'2022-05-18 04:40:01','2022-05-18 04:40:01','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:40:01','2022-05-18 04:40:01','',17,'https://demoweblinks.in/aahan/?p=328',0,'revision','',0),(329,1,'2022-05-18 04:41:10','2022-05-18 04:41:10','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:41:10','2022-05-18 04:41:10','',17,'https://demoweblinks.in/aahan/?p=329',0,'revision','',0),(330,1,'2022-05-18 04:41:10','2022-05-18 04:41:10','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"#\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:41:10','2022-05-18 04:41:10','',17,'https://demoweblinks.in/aahan/?p=330',0,'revision','',0),(331,1,'2022-05-18 04:41:11','2022-05-18 04:41:11','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 04:41:11','2022-05-18 04:41:11','',17,'https://demoweblinks.in/aahan/?p=331',0,'revision','',0),(333,1,'2022-05-18 04:51:42','2022-05-18 04:51:42','','zz-teammember3.jpg','','inherit','open','closed','','zz-teammember3-jpg','','','2022-05-18 04:51:42','2022-05-18 04:51:42','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3.jpg',0,'attachment','image/jpeg',0),(334,1,'2022-05-18 04:51:43','2022-05-18 04:51:43','','zz-teammember4.jpg','','inherit','open','closed','','zz-teammember4-jpg','','','2022-05-18 04:51:43','2022-05-18 04:51:43','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4.jpg',0,'attachment','image/jpeg',0),(335,1,'2022-05-18 04:51:46','2022-05-18 04:51:46','','zz-teammember2.jpg','','inherit','open','closed','','zz-teammember2-jpg','','','2022-05-18 04:51:46','2022-05-18 04:51:46','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2.jpg',0,'attachment','image/jpeg',0),(336,1,'2022-05-18 04:51:47','2022-05-18 04:51:47','','zz-teammember.jpg','','inherit','open','closed','','zz-teammember-jpg','','','2022-05-18 04:51:47','2022-05-18 04:51:47','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember.jpg',0,'attachment','image/jpeg',0),(337,1,'2022-05-18 04:51:48','2022-05-18 04:51:48','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Subheading</h3>		\n			<h2>Testimonial Grid</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia. Sed tincidunt, eros in venenatis pulvinar, tortor ante posuere magna, in laoreet tellus ligula in metus. Ut tempor blandit eleifend. </p>\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer\n							<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.</p>\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer\n							<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.</p>\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer\n							Nullam cursus lacinia erat. In consectetuer turpis ut velit. Nulla sit amet est. In ut quam vitae odio lacinia tincidunt. Phasellus dolor.\nEtiam vitae tortor. Phasellus ullamcorper ipsum rutrum nunc. Vivamus euismod mauris. Vivamus elementum semper nisi. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus.\nFusce commodo aliquam arcu. In consectetuer turpis ut velit. Vestibulum fringilla pede sit amet augue. Sed aliquam ultrices mauris. Vivamus elementum semper nisi.\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer','Testimonial Grid','','publish','closed','closed','','testimonial-grid','','','2022-05-18 04:51:48','2022-05-18 04:51:48','',0,'https://demoweblinks.in/aahan/?elementor_library=testimonial-grid',0,'elementor_library','',0),(338,1,'2022-05-18 04:51:48','2022-05-18 04:51:48','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Subheading</h3>		\n			<h2>Testimonial Grid</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia. Sed tincidunt, eros in venenatis pulvinar, tortor ante posuere magna, in laoreet tellus ligula in metus. Ut tempor blandit eleifend. </p>\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember3-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer\n							<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.</p>\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember4-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer\n							<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices ligula est, at mattis orci varius quis. Nullam non erat neque. Maecenas a ipsum a odio interdum lacinia.</p>\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember2-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer\n							Nullam cursus lacinia erat. In consectetuer turpis ut velit. Nulla sit amet est. In ut quam vitae odio lacinia tincidunt. Phasellus dolor.\nEtiam vitae tortor. Phasellus ullamcorper ipsum rutrum nunc. Vivamus euismod mauris. Vivamus elementum semper nisi. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus.\nFusce commodo aliquam arcu. In consectetuer turpis ut velit. Vestibulum fringilla pede sit amet augue. Sed aliquam ultrices mauris. Vivamus elementum semper nisi.\n							<img width=\"1000\" height=\"1474\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember.jpg 1000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember-204x300.jpg 204w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember-695x1024.jpg 695w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/zz-teammember-768x1132.jpg 768w\" />						\n														Firstname Surname\n																						Designer','Testimonial Grid','','inherit','closed','closed','','337-revision-v1','','','2022-05-18 04:51:48','2022-05-18 04:51:48','',337,'https://demoweblinks.in/aahan/?p=338',0,'revision','',0),(339,1,'2022-05-18 04:51:48','2022-05-18 04:51:48','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n\n\n/** Start Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n.envato-block__preview{overflow: visible;}\n/* Material Button Click Effect */\n.envato-kit-140-material-hit .menu-item a,\n.envato-kit-140-material-button .elementor-button{\n  background-position: center;\n  transition: background 0.8s;\n}\n.envato-kit-140-material-hit .menu-item a:hover,\n.envato-kit-140-material-button .elementor-button:hover{\n  background: radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;\n}\n.envato-kit-140-material-hit .menu-item a:active,\n.envato-kit-140-material-button .elementor-button:active{\n  background-color: #FFF;\n  background-size: 100%;\n  transition: background 0s;\n}\n\n/* Field Shadow */\n.envato-kit-140-big-shadow-form .elementor-field-textual{\n	box-shadow: 0 20px 30px rgba(0,0,0, .05);\n}\n\n/* FAQ */\n.envato-kit-140-faq .elementor-accordion .elementor-accordion-item{\n	border-width: 0 0 1px !important;\n}\n\n/* Scrollable Columns */\n.envato-kit-140-scrollable{\n	 height: 100%;\n   overflow: auto;\n   overflow-x: hidden;\n}\n\n/* ImageBox: No Space */\n.envato-kit-140-imagebox-nospace:hover{\n	transform: scale(1.1);\n	transition: all 0.3s;\n}\n.envato-kit-140-imagebox-nospace figure{\n	line-height: 0;\n}\n\n.envato-kit-140-slide .elementor-slide-content{\n	background: #FFF;\n	margin-left: -60px;\n	padding: 1em;\n}\n.envato-kit-140-carousel .slick-active:not(.slick-current)  img{\n	padding: 20px !important;\n	transition: all .9s;\n}\n\n/** End Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n\n\n/** Start Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n.envato-kit-102-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n\n/** End Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n\n\n/** Start Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n.envato-kit-138-bracket .elementor-widget-container > *:before{\n	content:\"[\";\n	color:#ffab00;\n	display:inline-block;\n	margin-right:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n.envato-kit-138-bracket .elementor-widget-container > *:after{\n	content:\"]\";\n	color:#ffab00;\n	display:inline-block;\n	margin-left:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n/** End Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n\n\n/** Start Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n.envato-block__preview{overflow: visible !important;}\n\n/** End Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n\n\n/** Start Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n.envato-kit-66-menu .e--pointer-framed .elementor-item:before{\n	border-radius:1px;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper{\n	position:relative;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit{\n	position:static;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit button{\n	position: absolute;\n    top: 50%;\n    right: 6px;\n    transform: translate(0, -50%);\n		-moz-transform: translate(0, -50%);\n		-webmit-transform: translate(0, -50%);\n}\n\n.envato-kit-66-testi-slider .elementor-testimonial__footer{\n	margin-top: -60px !important;\n	z-index: 99;\n  position: relative;\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	left:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev:before{\n	display:block;\n	margin-top:0px;\n	margin-left:0px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	right:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next:before{\n	display:block;\n	margin-top:-5px;\n	margin-right:-5px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-orangetext{\n	color:#f4511e;\n}\n\n.envato-kit-66-countdown .elementor-countdown-label{\n	display:inline-block !important;\n	border:2px solid rgba(255,255,255,0.2);\n	padding:9px 20px;\n}\n\n/** End Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-18 04:51:48','2022-05-18 04:51:48','',90,'https://demoweblinks.in/aahan/?p=339',0,'revision','',0),(340,1,'2022-05-18 04:54:26','2022-05-18 04:54:26','','ruslan-bardash-351288-unsplash.jpg','','inherit','open','closed','','ruslan-bardash-351288-unsplash-jpg','','','2022-05-18 04:54:26','2022-05-18 04:54:26','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ruslan-bardash-351288-unsplash.jpg',0,'attachment','image/jpeg',0),(341,1,'2022-05-18 04:54:31','2022-05-18 04:54:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Show More						</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Tevero liberavisse <br>comprehensam nec.</h2>		\n		<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.</p>		\n			<a href=\"#\" role=\"button\">\n						Get started now\n					</a>\n											<a href=\"#\">\n							Show More						</a>\n			<h2>Tevero liberavisse <br>comprehensam nec.</h2>		\n		<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.</p>		\n			<a href=\"#\" role=\"button\">\n						Get started now\n					</a>','Focus Boxes','','publish','closed','closed','','focus-boxes','','','2022-05-18 04:54:31','2022-05-18 04:54:31','',0,'https://demoweblinks.in/aahan/?elementor_library=focus-boxes',0,'elementor_library','',0),(342,1,'2022-05-18 04:54:31','2022-05-18 04:54:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Show More						</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Tevero liberavisse <br>comprehensam nec.</h2>		\n		<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.</p>		\n			<a href=\"#\" role=\"button\">\n						Get started now\n					</a>\n											<a href=\"#\">\n							Show More						</a>\n			<h2>Tevero liberavisse <br>comprehensam nec.</h2>		\n		<p>Eu iusto dolorum pro, facer oportere duo ne. Cum ei commune instructior. Ne dicat qualisque ullamcorper.</p>		\n			<a href=\"#\" role=\"button\">\n						Get started now\n					</a>','Focus Boxes','','inherit','closed','closed','','341-revision-v1','','','2022-05-18 04:54:31','2022-05-18 04:54:31','',341,'https://demoweblinks.in/aahan/?p=342',0,'revision','',0),(344,1,'2022-05-18 05:24:49','2022-05-18 05:24:49','','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 05:24:49','2022-05-18 05:24:49','',19,'https://demoweblinks.in/aahan/?p=344',0,'revision','',0),(345,1,'2022-05-18 05:24:49','2022-05-18 05:24:49','','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 05:24:49','2022-05-18 05:24:49','',19,'https://demoweblinks.in/aahan/?p=345',0,'revision','',0),(346,1,'2022-05-18 05:24:49','2022-05-18 05:24:49','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 05:24:49','2022-05-18 05:24:49','',19,'https://demoweblinks.in/aahan/?p=346',0,'revision','',0),(347,1,'2022-05-18 05:27:19','2022-05-18 05:27:19','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03NjNmMDkyNCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03NjNmMDkyNCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTc2M2YwOTI0In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNzYzZjA5MjQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTc2M2YwOTI0In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNzYzZjA5MjQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','inner pages','','publish','closed','closed','','inner-pages','','','2022-05-18 05:27:19','2022-05-18 05:27:19','',0,'https://demoweblinks.in/aahan/?elementor_library=inner-pages',0,'elementor_library','',0),(348,1,'2022-05-18 05:27:19','2022-05-18 05:27:19','','inner pages','','inherit','closed','closed','','347-revision-v1','','','2022-05-18 05:27:19','2022-05-18 05:27:19','',347,'https://demoweblinks.in/aahan/?p=348',0,'revision','',0),(349,1,'2022-05-18 05:27:19','2022-05-18 05:27:19','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03NjNmMDkyNCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC03NjNmMDkyNCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTc2M2YwOTI0In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNzYzZjA5MjQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTc2M2YwOTI0In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-763f0924\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNzYzZjA5MjQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','inner pages','','inherit','closed','closed','','347-revision-v1','','','2022-05-18 05:27:19','2022-05-18 05:27:19','',347,'https://demoweblinks.in/aahan/?p=349',0,'revision','',0),(351,1,'2022-05-18 05:32:15','2022-05-18 05:32:15','','aubergine-e1611195670454.jpg','','inherit','open','closed','','aubergine-e1611195670454-jpg','','','2022-05-18 05:32:15','2022-05-18 05:32:15','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454.jpg',0,'attachment','image/jpeg',0),(352,1,'2022-05-18 05:32:22','2022-05-18 05:32:22','','Image-9RVG87W.jpg','','inherit','open','closed','','image-9rvg87w-jpg','','','2022-05-18 05:32:22','2022-05-18 05:32:22','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W.jpg',0,'attachment','image/jpeg',0),(353,1,'2022-05-18 05:32:28','2022-05-18 05:32:28','','portrait-of-volunteer-group-posing-e1611195950376.jpg','','inherit','open','closed','','portrait-of-volunteer-group-posing-e1611195950376-jpg','','','2022-05-18 05:32:28','2022-05-18 05:32:28','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg',0,'attachment','image/jpeg',0),(354,1,'2022-05-18 05:32:34','2022-05-18 05:32:34','','happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg','','inherit','open','closed','','happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-jpg','','','2022-05-18 05:32:34','2022-05-18 05:32:34','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg',0,'attachment','image/jpeg',0),(355,1,'2022-05-18 05:32:41','2022-05-18 05:32:41','','Image-7GJ5W9M.jpg','','inherit','open','closed','','image-7gj5w9m-jpg','','','2022-05-18 05:32:41','2022-05-18 05:32:41','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-7GJ5W9M.jpg',0,'attachment','image/jpeg',0),(356,1,'2022-05-18 05:32:45','2022-05-18 05:32:45','','Image-VZKUZZD.jpg','','inherit','open','closed','','image-vzkuzzd-jpg','','','2022-05-18 05:32:45','2022-05-18 05:32:45','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-VZKUZZD.jpg',0,'attachment','image/jpeg',0),(357,1,'2022-05-18 05:32:48','2022-05-18 05:32:48','','Image-5S79FQC.jpg','','inherit','open','closed','','image-5s79fqc-jpg','','','2022-05-18 05:32:48','2022-05-18 05:32:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-5S79FQC.jpg',0,'attachment','image/jpeg',0),(358,1,'2022-05-18 05:32:49','2022-05-18 05:32:49','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us </h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Make World Happier</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"aubergine-e1611195670454.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzUxLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL2F1YmVyZ2luZS1lMTYxMTE5NTY3MDQ1NC5qcGciLCJzbGlkZXNob3ciOiI4NmFkYmE5In0%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454.jpg\'><img width=\"1920\" height=\"1280\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-1200x800.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"Image-9RVG87W.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzUyLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL0ltYWdlLTlSVkc4N1cuanBnIiwic2xpZGVzaG93IjoiODZhZGJhOSJ9\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W.jpg\'><img width=\"1920\" height=\"1281\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-1200x801.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6Ijg2YWRiYTkifQ%3D%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\'><img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing-e1611195950376.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzUzLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL3BvcnRyYWl0LW9mLXZvbHVudGVlci1ncm91cC1wb3NpbmctZTE2MTExOTU5NTAzNzYuanBnIiwic2xpZGVzaG93IjoiODZhZGJhOSJ9\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg\'><img width=\"1920\" height=\"1280\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-1200x800.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"background-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUyLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL2JhY2tncm91bmQtMi5qcGciLCJzbGlkZXNob3ciOiI4NmFkYmE5In0%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\'><img width=\"1920\" height=\"1280\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzU0LCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL2hhcHB5LW11bHRpY3VsdHVyYWwtd29tZW4taG9sZGluZy1jYXJkYm9hcmQtYm94LWFuZC1wYXBlci1iYWctd2l0aC1hcHBsZXMtd2hpbGUtc3RhbmRpbmctbmVhci1lMTYxMTE5NjAzOTgzMy5qcGciLCJzbGlkZXNob3ciOiI4NmFkYmE5In0%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\'><img width=\"1920\" height=\"1282\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1536x1026.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1200x801.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure>\n			<h5>Our Volunteers</h5>		\n			<h2>Meet With Them</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-7GJ5W9M.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Armaan Cullen\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-VZKUZZD.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Esha Wheatley\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-5S79FQC.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Natalie Whyte\n				</h3>				\n					<p>Volunteer</p>\n			<a href=\"#\" role=\"button\">\n						All Volunteer\n					</a>','About Us','','publish','closed','closed','','about-us','','','2022-05-18 05:32:49','2022-05-18 05:32:49','',0,'https://demoweblinks.in/aahan/?elementor_library=about-us',0,'elementor_library','',0),(359,1,'2022-05-18 05:32:49','2022-05-18 05:32:49','','About Us','','inherit','closed','closed','','358-revision-v1','','','2022-05-18 05:32:49','2022-05-18 05:32:49','',358,'https://demoweblinks.in/aahan/?p=359',0,'revision','',0),(360,1,'2022-05-18 05:32:49','2022-05-18 05:32:49','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>About Us </h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Make World Happier</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"aubergine-e1611195670454.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzUxLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL2F1YmVyZ2luZS1lMTYxMTE5NTY3MDQ1NC5qcGciLCJzbGlkZXNob3ciOiI4NmFkYmE5In0%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454.jpg\'><img width=\"1920\" height=\"1280\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-e1611195670454-1200x800.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"Image-9RVG87W.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzUyLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL0ltYWdlLTlSVkc4N1cuanBnIiwic2xpZGVzaG93IjoiODZhZGJhOSJ9\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W.jpg\'><img width=\"1920\" height=\"1281\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-9RVG87W-1200x801.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6Ijg2YWRiYTkifQ%3D%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\'><img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing-e1611195950376.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzUzLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL3BvcnRyYWl0LW9mLXZvbHVudGVlci1ncm91cC1wb3NpbmctZTE2MTExOTU5NTAzNzYuanBnIiwic2xpZGVzaG93IjoiODZhZGJhOSJ9\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg\'><img width=\"1920\" height=\"1280\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing-e1611195950376-1200x800.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"background-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUyLCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL2JhY2tncm91bmQtMi5qcGciLCJzbGlkZXNob3ciOiI4NmFkYmE5In0%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\'><img width=\"1920\" height=\"1280\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"86adba9\" data-elementor-lightbox-title=\"happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzU0LCJ1cmwiOiJodHRwczpcL1wvZGVtb3dlYmxpbmtzLmluXC9hYWhhblwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDVcL2hhcHB5LW11bHRpY3VsdHVyYWwtd29tZW4taG9sZGluZy1jYXJkYm9hcmQtYm94LWFuZC1wYXBlci1iYWctd2l0aC1hcHBsZXMtd2hpbGUtc3RhbmRpbmctbmVhci1lMTYxMTE5NjAzOTgzMy5qcGciLCJzbGlkZXNob3ciOiI4NmFkYmE5In0%3D\" href=\'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\'><img width=\"1920\" height=\"1282\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833.jpg 1920w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1536x1026.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-e1611196039833-1200x801.jpg 1200w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" /></a>\n			</figure>\n			<h5>Our Volunteers</h5>		\n			<h2>Meet With Them</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-7GJ5W9M.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Armaan Cullen\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-VZKUZZD.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Esha Wheatley\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-5S79FQC.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Natalie Whyte\n				</h3>				\n					<p>Volunteer</p>\n			<a href=\"#\" role=\"button\">\n						All Volunteer\n					</a>','About Us','','inherit','closed','closed','','358-revision-v1','','','2022-05-18 05:32:49','2022-05-18 05:32:49','',358,'https://demoweblinks.in/aahan/?p=360',0,'revision','',0),(361,1,'2022-05-18 05:40:35','2022-05-18 05:40:35','','2','','inherit','open','closed','','2','','','2022-05-18 05:40:35','2022-05-18 05:40:35','',15,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png',0,'attachment','image/png',0),(362,1,'2022-05-18 05:40:45','2022-05-18 05:40:45','','1','','inherit','open','closed','','1','','','2022-05-18 05:40:45','2022-05-18 05:40:45','',15,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png',0,'attachment','image/png',0),(363,1,'2022-05-18 05:46:32','2022-05-18 05:46:32','','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 05:46:32','2022-05-18 05:46:32','',15,'https://demoweblinks.in/aahan/?p=363',0,'revision','',0),(364,1,'2022-05-18 05:46:32','2022-05-18 05:46:32','','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 05:46:32','2022-05-18 05:46:32','',15,'https://demoweblinks.in/aahan/?p=364',0,'revision','',0),(365,1,'2022-05-18 05:46:32','2022-05-18 05:46:32','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 05:46:32','2022-05-18 05:46:32','',15,'https://demoweblinks.in/aahan/?p=365',0,'revision','',0),(367,1,'2022-05-18 06:04:11','2022-05-18 06:04:11','','pexels-photo-209663.jpeg','','inherit','open','closed','','pexels-photo-209663-jpeg','','','2022-05-18 06:04:11','2022-05-18 06:04:11','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663.jpeg',0,'attachment','image/jpeg',0),(368,1,'2022-05-18 06:04:13','2022-05-18 06:04:13','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Stay Updated</h3>		\n			<h2>Join The Buzz</h2>		\n		Vivamus consectetuer hendrerit lacus. Vivamus quis mi. Nulla porta dolor. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Praesent blandit laoreet.		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h3>Newsletter</h3>		\n		<p>Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum.</p>','Hero - Newsletter Subscription (with Form)','','publish','closed','closed','','hero-newsletter-subscription-with-form','','','2022-05-18 06:04:14','2022-05-18 06:04:14','',0,'https://demoweblinks.in/aahan/?elementor_library=hero-newsletter-subscription-with-form',0,'elementor_library','',0),(369,1,'2022-05-18 06:04:14','2022-05-18 06:04:14','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Stay Updated</h3>		\n			<h2>Join The Buzz</h2>		\n		Vivamus consectetuer hendrerit lacus. Vivamus quis mi. Nulla porta dolor. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Praesent blandit laoreet.		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h3>Newsletter</h3>		\n		<p>Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum.</p>','Hero - Newsletter Subscription (with Form)','','inherit','closed','closed','','368-revision-v1','','','2022-05-18 06:04:14','2022-05-18 06:04:14','',368,'https://demoweblinks.in/aahan/?p=369',0,'revision','',0),(370,1,'2022-05-18 06:07:54','2022-05-18 06:07:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 06:07:54','2022-05-18 06:07:54','',17,'https://demoweblinks.in/aahan/?p=370',0,'revision','',0),(371,1,'2022-05-18 06:07:54','2022-05-18 06:07:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 06:07:54','2022-05-18 06:07:54','',17,'https://demoweblinks.in/aahan/?p=371',0,'revision','',0),(372,1,'2022-05-18 06:07:54','2022-05-18 06:07:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 06:07:54','2022-05-18 06:07:54','',17,'https://demoweblinks.in/aahan/?p=372',0,'revision','',0),(373,1,'2022-05-18 06:07:55','2022-05-18 06:07:55','','footer subscribe button','','inherit','closed','closed','','250-revision-v1','','','2022-05-18 06:07:55','2022-05-18 06:07:55','',250,'https://demoweblinks.in/aahan/?p=373',0,'revision','',0),(374,1,'2022-05-18 06:09:02','2022-05-18 06:09:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 06:09:02','2022-05-18 06:09:02','',17,'https://demoweblinks.in/aahan/?p=374',0,'revision','',0),(375,1,'2022-05-18 06:09:02','2022-05-18 06:09:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 06:09:02','2022-05-18 06:09:02','',17,'https://demoweblinks.in/aahan/?p=375',0,'revision','',0),(376,1,'2022-05-18 06:09:02','2022-05-18 06:09:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 06:09:02','2022-05-18 06:09:02','',17,'https://demoweblinks.in/aahan/?p=376',0,'revision','',0),(377,1,'2022-05-18 06:09:04','2022-05-18 06:09:04','','footer subscribe button','','inherit','closed','closed','','250-revision-v1','','','2022-05-18 06:09:04','2022-05-18 06:09:04','',250,'https://demoweblinks.in/aahan/?p=377',0,'revision','',0),(379,1,'2022-05-18 06:11:14','2022-05-18 06:11:14','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 06:11:14','2022-05-18 06:11:14','',19,'https://demoweblinks.in/aahan/?p=379',0,'revision','',0),(380,1,'2022-05-18 06:11:14','2022-05-18 06:11:14','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 06:11:14','2022-05-18 06:11:14','',19,'https://demoweblinks.in/aahan/?p=380',0,'revision','',0),(381,1,'2022-05-18 06:11:14','2022-05-18 06:11:14','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 06:11:14','2022-05-18 06:11:14','',19,'https://demoweblinks.in/aahan/?p=381',0,'revision','',0),(382,1,'2022-05-18 06:13:11','2022-05-18 06:13:11','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 06:13:11','2022-05-18 06:13:11','',19,'https://demoweblinks.in/aahan/?p=382',0,'revision','',0),(383,1,'2022-05-18 06:13:11','2022-05-18 06:13:11','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 06:13:11','2022-05-18 06:13:11','',19,'https://demoweblinks.in/aahan/?p=383',0,'revision','',0),(384,1,'2022-05-18 06:13:12','2022-05-18 06:13:12','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Success Stories</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n											<a>\n							Read  More						</a>\n			<h2>Rupanti Munda: Captaining change</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand, having lost her father, faced a further crisis when her brother was killed in Naxalite violence. Rupanti began working at the farm to make ends meet. Rupanti’s story changed when she came in touch with Aahan. During one of her visits, Dr Rashmi Tiwari found Rupanti working on the farm and learnt about her desire to play football. Seeing her talent and interest in sports. Aahan helped her get football training.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n											<a>\n							Read  More						</a>\n			<h2>Artee Munda: Changing minds with art</h2>		\n		<p>Artee comes from a village where child marriage is an accepted social norm. As part of our ongoing research and interactions with the tribal girls, the Aahan team met Artee K Munda and learnt about her challenges in continuing her education and following her passion for Arts.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<a href=\"#\" role=\"button\">\n						Read more\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1lOWFjMzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWU5YWMzODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e9ac385\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZTlhYzM4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Success Stories','','inherit','closed','closed','','19-revision-v1','','','2022-05-18 06:13:12','2022-05-18 06:13:12','',19,'https://demoweblinks.in/aahan/?p=384',0,'revision','',0),(385,1,'2022-05-18 06:13:13','2022-05-18 06:13:13','','menu','','inherit','closed','closed','','297-revision-v1','','','2022-05-18 06:13:13','2022-05-18 06:13:13','',297,'https://demoweblinks.in/aahan/?p=385',0,'revision','',0),(386,1,'2022-05-18 06:14:02','2022-05-18 06:14:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 06:14:02','2022-05-18 06:14:02','',15,'https://demoweblinks.in/aahan/?p=386',0,'revision','',0),(387,1,'2022-05-18 06:14:02','2022-05-18 06:14:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 06:14:02','2022-05-18 06:14:02','',15,'https://demoweblinks.in/aahan/?p=387',0,'revision','',0),(388,1,'2022-05-18 06:14:02','2022-05-18 06:14:02','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 06:14:02','2022-05-18 06:14:02','',15,'https://demoweblinks.in/aahan/?p=388',0,'revision','',0),(389,1,'2022-05-18 09:35:01','2022-05-18 09:35:01','<a href=\"#\" role=\"button\">\n						Donate\n					</a>','donate','','publish','closed','closed','','donate','','','2022-05-18 09:35:02','2022-05-18 09:35:02','',0,'https://demoweblinks.in/aahan/?elementor_library=donate',0,'elementor_library','',0),(390,1,'2022-05-18 09:35:01','2022-05-18 09:35:01','','donate','','inherit','closed','closed','','389-revision-v1','','','2022-05-18 09:35:01','2022-05-18 09:35:01','',389,'https://demoweblinks.in/aahan/?p=390',0,'revision','',0),(391,1,'2022-05-18 09:35:02','2022-05-18 09:35:02','<a href=\"#\" role=\"button\">\n						Donate\n					</a>','donate','','inherit','closed','closed','','389-revision-v1','','','2022-05-18 09:35:02','2022-05-18 09:35:02','',389,'https://demoweblinks.in/aahan/?p=391',0,'revision','',0),(392,1,'2022-05-18 09:36:02','2022-05-18 09:36:02','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','header social icon','','publish','closed','closed','','header-social-icon','','','2022-05-18 09:36:03','2022-05-18 09:36:03','',0,'https://demoweblinks.in/aahan/?elementor_library=header-social-icon',0,'elementor_library','',0),(393,1,'2022-05-18 09:36:02','2022-05-18 09:36:02','','header social icon','','inherit','closed','closed','','392-revision-v1','','','2022-05-18 09:36:02','2022-05-18 09:36:02','',392,'https://demoweblinks.in/aahan/?p=393',0,'revision','',0),(394,1,'2022-05-18 09:36:03','2022-05-18 09:36:03','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>','header social icon','','inherit','closed','closed','','392-revision-v1','','','2022-05-18 09:36:03','2022-05-18 09:36:03','',392,'https://demoweblinks.in/aahan/?p=394',0,'revision','',0),(396,1,'2022-05-18 09:37:57','2022-05-18 09:37:57','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 09:37:57','2022-05-18 09:37:57','',15,'https://demoweblinks.in/aahan/?p=396',0,'revision','',0),(397,1,'2022-05-18 09:37:57','2022-05-18 09:37:57','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYmI0MGFhIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNiYjQwYWEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cbb40aa\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2JiNDBhYSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 09:37:57','2022-05-18 09:37:57','',15,'https://demoweblinks.in/aahan/?p=397',0,'revision','',0),(398,1,'2022-05-18 09:37:57','2022-05-18 09:37:57','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 09:37:57','2022-05-18 09:37:57','',15,'https://demoweblinks.in/aahan/?p=398',0,'revision','',0),(399,1,'2022-05-18 09:38:26','2022-05-18 09:38:26','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YTNkYjg5ZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YTNkYjg5ZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTVhM2RiODlkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWEzZGI4OWQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTVhM2RiODlkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWEzZGI4OWQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','inner page template (with global)','','publish','closed','closed','','inner-page-template-with-global','','','2022-05-18 09:38:27','2022-05-18 09:38:27','',0,'https://demoweblinks.in/aahan/?elementor_library=inner-page-template-with-global',0,'elementor_library','',0),(400,1,'2022-05-18 09:38:26','2022-05-18 09:38:26','','inner page template (with global)','','inherit','closed','closed','','399-revision-v1','','','2022-05-18 09:38:26','2022-05-18 09:38:26','',399,'https://demoweblinks.in/aahan/?p=400',0,'revision','',0),(401,1,'2022-05-18 09:38:27','2022-05-18 09:38:27','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YTNkYjg5ZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YTNkYjg5ZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTVhM2RiODlkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWEzZGI4OWQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTVhM2RiODlkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5a3db89d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWEzZGI4OWQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','inner page template (with global)','','inherit','closed','closed','','399-revision-v1','','','2022-05-18 09:38:27','2022-05-18 09:38:27','',399,'https://demoweblinks.in/aahan/?p=401',0,'revision','',0),(402,1,'2022-05-18 09:39:47','2022-05-18 09:39:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-18 09:39:47','2022-05-18 09:39:47','',11,'https://demoweblinks.in/aahan/?p=402',0,'revision','',0),(403,1,'2022-05-18 09:39:47','2022-05-18 09:39:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-18 09:39:47','2022-05-18 09:39:47','',11,'https://demoweblinks.in/aahan/?p=403',0,'revision','',0),(404,1,'2022-05-18 09:39:47','2022-05-18 09:39:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h4>SPREADING THE LIGHT</h4>		\n			<h2>Join our community to empower girls</h2>		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n			<h5>About Us</h5>		\n			<h2>We Are In A Mission To <br>  Help The Helpness</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n						+											\n					<h2>Fund Raised in crores</h2>							\n			<h5>What we doing</h5>		\n			<h2>Our programs</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3> People That Needs Healthy Food</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>New School For Childrens</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>Shocking Statistics of Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n															<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n			<h3>\'Give a hand to \nMake Better World\'</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n				<h3>\n						27					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur 					</p>\n			<h5>From the Blog</h5>		\n			<h2>News & Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs  Medicine</h3>		\n					<ul>\n							<li>\n										Majene, Sulawesi Barat\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"386\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3>Disaster Relief To Africa</h3>		\n					<ul>\n							<li>\n										Southern, South Africa\n									</li>\n								<li>\n										10.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/hands-of-young-homeless-african-man-begging-for-food.jpg 2000w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h3> People That Needs Food</h3>		\n					<ul>\n							<li>\n										Bima, NTB\n									</li>\n								<li>\n										09.00 AM - 17.00 PM\n									</li>\n						</ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna 		\n			<a href=\"#\" role=\"button\">\n						View Details\n					</a>\n															<img width=\"2000\" height=\"1335\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1024x684.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-768x513.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1536x1025.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1200x801.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart-1980x1322.jpg 1980w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n			<h3>Become a voulunteer</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Join now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Start changing lives</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						check now\n					</a>\n															<img width=\"1024\" height=\"684\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457-768x513.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h3>Make Donations</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna		\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC05M2JmZTAxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTkzYmZlMDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-93bfe01\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtOTNiZmUwMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Landing page','','inherit','closed','closed','','11-revision-v1','','','2022-05-18 09:39:47','2022-05-18 09:39:47','',11,'https://demoweblinks.in/aahan/?p=404',0,'revision','',0),(406,1,'2022-05-18 11:21:48','2022-05-18 11:21:48','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Subheading</h3>		\n			<h2>Focus Boxes</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>Feature Name</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h3>Feature Name</h3>		\n		<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h3>Feature Name</h3>		\n		<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>','Focus Boxes','','publish','closed','closed','','focus-boxes-2','','','2022-05-18 11:21:48','2022-05-18 11:21:48','',0,'https://demoweblinks.in/aahan/?elementor_library=focus-boxes-2',0,'elementor_library','',0),(407,1,'2022-05-18 11:21:48','2022-05-18 11:21:48','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>Subheading</h3>		\n			<h2>Focus Boxes</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h3>Feature Name</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h3>Feature Name</h3>		\n		<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h3>Feature Name</h3>		\n		<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sodales nisl ac metus congue vehicula. Integer eros tellus, pretium sagittis metus nec, efficitur mattis ligula.</p>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>','Focus Boxes','','inherit','closed','closed','','406-revision-v1','','','2022-05-18 11:21:48','2022-05-18 11:21:48','',406,'https://demoweblinks.in/aahan/?p=407',0,'revision','',0),(408,1,'2022-05-18 11:48:38','2022-05-18 11:48:38','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 11:48:38','2022-05-18 11:48:38','',15,'https://demoweblinks.in/aahan/?p=408',0,'revision','',0),(409,1,'2022-05-18 11:48:38','2022-05-18 11:48:38','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n															<img width=\"580\" height=\"287\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-1024x506.png 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-300x148.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1-768x379.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/1.png 1190w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 11:48:38','2022-05-18 11:48:38','',15,'https://demoweblinks.in/aahan/?p=409',0,'revision','',0),(410,1,'2022-05-18 11:48:39','2022-05-18 11:48:39','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-18 11:48:39','2022-05-18 11:48:39','',15,'https://demoweblinks.in/aahan/?p=410',0,'revision','',0),(411,1,'2022-05-18 11:50:37','2022-05-18 11:50:37','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Approach</h2>		\n			<h2>A multi-stakeholder model</h2>		\n		<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.</p>		\n					<ul>\n							<li>\n										S: School, Sarpanch &members of the local self-government (Panchayat).\n									</li>\n								<li>\n										M: Media person\n									</li>\n								<li>\n										A: Administration and Academia\n									</li>\n								<li>\n										R: Regional Leaders: influential people respected by Adivasi, local NGOs\n									</li>\n								<li>\n										T: Tribal Families\n									</li>\n						</ul>\n		<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.</p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and <strong>the first ray of light shines through.</strong> They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.</p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community’s help, volunteers to ensure higher enrolment and improved outcomes.</p>		\n			<h2>The Aahan Model – A.C.E\n</h2>		\n			<h1>Awareness</h1>		\n		<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br />This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.</p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h1>Collective Action</h1>		\n		<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.</p><p>This is a vital driver for the transformation in critical issues of gender discrimination.</p>		\n			<h1>Education, knowledge and skills</h1>		\n		<p>Education, knowledge and skills are fundamental to enable girls’ to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.</p>		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Approach','','publish','closed','closed','','our-approach','','','2022-05-18 12:29:31','2022-05-18 12:29:31','',15,'https://demoweblinks.in/aahan/?page_id=411',1,'page','',0),(412,1,'2022-05-18 11:50:37','2022-05-18 11:50:37','','Our Approach','','inherit','closed','closed','','411-revision-v1','','','2022-05-18 11:50:37','2022-05-18 11:50:37','',411,'https://demoweblinks.in/aahan/?p=412',0,'revision','',0),(413,1,'2022-05-18 11:51:03','2022-05-18 11:51:03','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Team</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"347\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-1024x613.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-1024x613.jpeg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-300x180.jpeg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-768x460.jpeg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-1200x718.jpeg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663.jpeg 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h1>Dr Rashmi Tiwari</h1>		\n		<p>Founder and Director of the Aahan Foundation, a Doctorate in Economics, and a Diploma in Sustainability and Responsible Leadership from The Swedish Institute has held leadership positions in Corporates before she founded the NGO. She was the Director at the American Chamber of Commerce (AMCHAM) in India and Executive Director at The CEO Clubs India.</p><p>She launched Aahan Foundation in 2013 to address a string of interconnected social problems related to girls &amp; women, including Gender Inequality, Girl Child Trafficking, Child Marriage, Poverty, Lack of awareness and facilities for Health, Hygiene and Sanitation, Illiteracy.</p><p>She uses her experience as a certified leadership coach using tools based on the latest research on brain science to help underprivileged girls transform their personal and professional lives.</p><p>This is a vital driver for the transformation in critical issues of gender discrimination.</p>		\n		<p>” As part of a social welfare funding project, I visited tribal homes in Orissa, India. During one of the visits to a small village, parents of minor girls as young as 5-6 years old offered them to me in exchange for money. The ground reality of the red corridor in the country shook me to the core. This marked the watershed moment of my life. Returning to Delhi, I decided to quit my corporate job to visit tribal areas of India in an attempt to understand the extent of trafficking and empower tribal girls and women.”</p><p>Dr Rashmi Tiwari</p><p>Her efforts have been widely recognized. She is a Fellow of Vital Voices (USA), Fellow of SIMP. She was selected as one of India’s emerging women business leaders under the Fortune/US State Department Leadership Mentorship Program. </p><ul><li> Top 100 Social Enablers 2017</li><li>Women Rights Award</li><li>Chosen as Tejaswini</li><li>The Good Crusader </li><li>Top 100 Women Leaders by TIAW</li><li>VVLead Fellow</li><li>Participant Global Ambassador Program</li><li>“Pushpalata Ranade National Bravery Award”</li><li>US State Department &amp; Fortune Magazine Mentorship Program</li></ul>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n			<h2>Bhavleen Kaur Bali, Director-Education</h2>		\n		<p>For Bhavleen, to become a teacher and shape young minds to become their best versions has been her childhood dream. She could never imagine herself doing anything else and she took every step to achieve excellence in this field and achieve her dream.</p><p>After completing her Masters in commerce, she completed her B.Ed and has been in the education space ever since. She worked in some of the most recognised education establishments in the country before crossing paths with Aahan and found this whole new realm to not only educate kids coming from marginalised backgrounds but also the ‘Adivasi girls’ who are survivors of gender-based violence.</p><p>These girls touched her heart the moment she met them and she devoted herself to the cause by taking over the reins of the education team of Aahan. She is setting up replicable models for teaching girls and loves working every day in a job that she has a heart and soul in.</p>		\n			<h2>Kriti Sinha, Edumentor & Storyteller\n</h2>		\n		<p>A graduate of Kamala Nehru College in Psychology and Human Resource Management, Kriti is currently pursuing her Master’s in Applied Psychology from Amity University.</p><p>Journey with Aahan and Adivasi girls started out as an internship but slowly made her a part of something even bigger. Her interaction with the girls in Jharkhand exposed her to the bitter truth of the inequalities of our education system and the wide divide between rural and urban areas.</p><p>This led her to her mission of mentoring and educating Adivasi girls with foundational level communication skills and through the CREATE model she aims to go a step further by focusing on social-emotional development.</p><p>Creating a safe space has helped the girls come forward with their stories of courage and everything that they have ever been through. She aims to bring forward these stories and help these girls break the glass ceiling.</p><p>She is also interested in understanding the impact of Domestic Violence on the mental health and development of women and children in Jharkhand.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<h2>Program Coordinator Artee K Munda\n</h2>		\n		<p>An Udan Fellow of 2017, she is the Program Co-ordinator of Aahan and oversees all the programs run at the ground level. She works towards helping the community understand the ill effects of trafficking, child marriage, girl child rights through paintings. She wants to use her art to create awareness about the GBV prevalent in tribal society, rich tribal art and culture and depict the dreams of Aahan girls. She is also trying to revive the dying art of Sohrai.</p>		\n			<h2>Rupanti Munda, Sports Coordinator\n</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand is a Braveheart. A captain of the Aahan Bravehearts Football team, Rupanti has been awarded by the Jharkhand Government for her contribution to football at the grassroots. From holding village level community development programs to training girls in villages in Jharkhand, Rupanti plans and coordinates Aahan Foundation’s sports initiative.</p><p>Rupanti visits extremely difficult and dangerous areas in Jharkhand to meet with girls and their parents. She has prevented many girls from being trafficked and married off at an early age.</p>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yY2Y3ZTA4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yY2Y3ZTA4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTJjZjdlMDgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmNmN2UwODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTJjZjdlMDgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmNmN2UwODAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','our team','','publish','closed','closed','','our-team','','','2022-05-18 12:54:15','2022-05-18 12:54:15','',15,'https://demoweblinks.in/aahan/?page_id=413',2,'page','',0),(414,1,'2022-05-18 11:51:03','2022-05-18 11:51:03','','our team','','inherit','closed','closed','','413-revision-v1','','','2022-05-18 11:51:03','2022-05-18 11:51:03','',413,'https://demoweblinks.in/aahan/?p=414',0,'revision','',0),(415,1,'2022-05-18 11:51:42','2022-05-18 11:51:42','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n                                                                            <h3>Establishment as an NGO Aahan Tribal Development Foundation</h3>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2013 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Mentoring Walk</h3>\n                                                                  <p>Mentoring Walk, where we brought tribal girls and matched them with their mentors. It was our first partnership program with Vital Voices and DFID. It was a unique program for the stakeholders and led to several such walks in the coming years.</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2014 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Mentorship Programs</h3>\n                                                                  <p>Launched mentorship program for emerging change-makers, who were coming from all walks of life; students to Panchayat leaders.\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2016 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Formation of Aahan Bravehearts</h3>\n                                                                  <p>National level football player Rupanti Munda represented India in Homeless Soccer World Cup in Oslo, Norwa\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2017 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Young Ambassadors Program</h3>\n                                                                  <p>Launch of Young Ambassadors Program.\n&amp; Joint Art Exhibition of Aahan Fellow Arti Munda and Aahan Ambassador Jannat Arora in Delhi.\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2018 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Name changed to Aahan Foundation for Social Change.</h3>\n                                                                  <p>Name changed to Aahan Foundation for Social Change from Aahan Tribal Development Foundation.\nStarted a centre in Jaratoli village of Jonha panchayat to provide foundational learning, digital literacy, trauma healing etc.</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2019 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Covid Relief Program</h3>\n                                                                  <p>Covid 19 relief programs in the tribal regions.\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2020 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Affiliation of two football clubs with AIFF</h3>\n                                                                  <p>Affiliation of two football clubs with All India Football Federation (AIFF) comprising players who are survivors of GBV\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2021 </h4>\n                        <!-- .single-timeline .media END -->\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','publish','closed','closed','','milestones','','','2022-05-18 14:27:55','2022-05-18 14:27:55','',15,'https://demoweblinks.in/aahan/?page_id=415',3,'page','',0),(416,1,'2022-05-18 11:51:42','2022-05-18 11:51:42','','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 11:51:42','2022-05-18 11:51:42','',415,'https://demoweblinks.in/aahan/?p=416',0,'revision','',0),(417,1,'2022-05-18 11:53:11','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-18 11:53:11','0000-00-00 00:00:00','',0,'https://demoweblinks.in/aahan/?page_id=417',0,'page','',0),(419,1,'2022-05-18 12:09:40','2022-05-18 12:09:40','','fabian-kozdon-271993-unsplash.jpg','','inherit','open','closed','','fabian-kozdon-271993-unsplash-jpg','','','2022-05-18 12:09:40','2022-05-18 12:09:40','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/fabian-kozdon-271993-unsplash.jpg',0,'attachment','image/jpeg',0),(420,1,'2022-05-18 12:09:44','2022-05-18 12:09:44','','filip-zrnzevic-349229-unsplash2.jpg','','inherit','open','closed','','filip-zrnzevic-349229-unsplash2-jpg','','','2022-05-18 12:09:44','2022-05-18 12:09:44','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/filip-zrnzevic-349229-unsplash2.jpg',0,'attachment','image/jpeg',0),(421,1,'2022-05-18 12:09:48','2022-05-18 12:09:48','','book.png','','inherit','open','closed','','book-png','','','2022-05-18 12:09:48','2022-05-18 12:09:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/book.png',0,'attachment','image/png',0),(422,1,'2022-05-18 12:09:48','2022-05-18 12:09:48','','jeremy-bishop-483982-unsplash.jpg','','inherit','open','closed','','jeremy-bishop-483982-unsplash-jpg','','','2022-05-18 12:09:48','2022-05-18 12:09:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/jeremy-bishop-483982-unsplash.jpg',0,'attachment','image/jpeg',0),(423,1,'2022-05-18 12:10:28','2022-05-18 12:10:28','','adrian-226109-unsplash.jpg','','inherit','open','closed','','adrian-226109-unsplash-jpg','','','2022-05-18 12:10:28','2022-05-18 12:10:28','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/adrian-226109-unsplash.jpg',0,'attachment','image/jpeg',0),(424,1,'2022-05-18 12:10:32','2022-05-18 12:10:32','','compass.png','','inherit','open','closed','','compass-png','','','2022-05-18 12:10:32','2022-05-18 12:10:32','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/compass.png',0,'attachment','image/png',0),(425,1,'2022-05-18 12:10:33','2022-05-18 12:10:33','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Services</h4>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h2>Sub heading</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>Heading</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>		\n			<figure><img width=\"24\" height=\"24\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/book.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Heading</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>		\n			<h3>Heading​</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>		\n			<figure><img width=\"24\" height=\"24\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/compass.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Heading​</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>','Services','','publish','closed','closed','','services-2','','','2022-05-18 12:10:33','2022-05-18 12:10:33','',0,'https://demoweblinks.in/aahan/?elementor_library=services-2',0,'elementor_library','',0),(426,1,'2022-05-18 12:10:33','2022-05-18 12:10:33','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Services</h4>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h2>Sub heading</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><h3>Heading</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>		\n			<figure><img width=\"24\" height=\"24\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/book.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Heading</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>		\n			<h3>Heading​</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>		\n			<figure><img width=\"24\" height=\"24\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/compass.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Heading​</h3><p>Aliquam erat volutpat. Praesent adipiscing. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.</p>','Services','','inherit','closed','closed','','425-revision-v1','','','2022-05-18 12:10:33','2022-05-18 12:10:33','',425,'https://demoweblinks.in/aahan/?p=426',0,'revision','',0),(427,1,'2022-05-18 12:13:32','2022-05-18 12:13:32','','pexels-photo-819807.jpeg','','inherit','open','closed','','pexels-photo-819807-jpeg','','','2022-05-18 12:13:32','2022-05-18 12:13:32','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807.jpeg',0,'attachment','image/jpeg',0),(428,1,'2022-05-18 12:13:38','2022-05-18 12:13:38','','trail-1152864-unsplash.jpg','','inherit','open','closed','','trail-1152864-unsplash-jpg','','','2022-05-18 12:13:38','2022-05-18 12:13:38','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/trail-1152864-unsplash.jpg',0,'attachment','image/jpeg',0),(429,1,'2022-05-18 12:13:41','2022-05-18 12:13:41','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"361\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1024x638.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1024x638.jpeg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-300x187.jpeg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-768x479.jpeg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1536x958.jpeg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1200x748.jpeg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807.jpeg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Worrying Does Not Empty Tomorrow Of Its Troubles, It Empties Today Of Its Strength.</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Hero - Inline Image','','publish','closed','closed','','hero-inline-image','','','2022-05-18 12:13:41','2022-05-18 12:13:41','',0,'https://demoweblinks.in/aahan/?elementor_library=hero-inline-image',0,'elementor_library','',0);
INSERT INTO `wp_posts` VALUES (430,1,'2022-05-18 12:13:41','2022-05-18 12:13:41','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"361\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1024x638.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1024x638.jpeg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-300x187.jpeg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-768x479.jpeg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1536x958.jpeg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807-1200x748.jpeg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-819807.jpeg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Worrying Does Not Empty Tomorrow Of Its Troubles, It Empties Today Of Its Strength.</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Hero - Inline Image','','inherit','closed','closed','','429-revision-v1','','','2022-05-18 12:13:41','2022-05-18 12:13:41','',429,'https://demoweblinks.in/aahan/?p=430',0,'revision','',0),(431,1,'2022-05-18 12:17:53','2022-05-18 12:17:53','','spacex-101796-unsplash.jpg','','inherit','open','closed','','spacex-101796-unsplash-jpg','','','2022-05-18 12:17:53','2022-05-18 12:17:53','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/spacex-101796-unsplash.jpg',0,'attachment','image/jpeg',0),(432,1,'2022-05-18 12:18:26','2022-05-18 12:18:26','','guille-pozzi-484826-unsplash.jpg','','inherit','open','closed','','guille-pozzi-484826-unsplash-jpg','','','2022-05-18 12:18:26','2022-05-18 12:18:26','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/guille-pozzi-484826-unsplash.jpg',0,'attachment','image/jpeg',0),(433,1,'2022-05-18 12:19:00','2022-05-18 12:19:00','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Sub heading</h2>		\n			<h1>Main</h1>		\n			<h1>Heading</h1>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>Maecenas vestibulum mollis diam. Ut a nisl id ante tempus hendrerit. Fusce risus nisl, viverra et, tempor et, pretium in, sapien.</p>https://www.youtube.com/watch?v=tP4QuS2LUsk','Hero – Inline Video','','publish','closed','closed','','hero-inline-video','','','2022-05-18 12:19:00','2022-05-18 12:19:00','',0,'https://demoweblinks.in/aahan/?elementor_library=hero-inline-video',0,'elementor_library','',0),(434,1,'2022-05-18 12:19:00','2022-05-18 12:19:00','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Sub heading</h2>		\n			<h1>Main</h1>		\n			<h1>Heading</h1>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n		<p>Maecenas vestibulum mollis diam. Ut a nisl id ante tempus hendrerit. Fusce risus nisl, viverra et, tempor et, pretium in, sapien.</p>https://www.youtube.com/watch?v=tP4QuS2LUsk','Hero – Inline Video','','inherit','closed','closed','','433-revision-v1','','','2022-05-18 12:19:00','2022-05-18 12:19:00','',433,'https://demoweblinks.in/aahan/?p=434',0,'revision','',0),(435,1,'2022-05-18 12:19:00','2022-05-18 12:19:00','\n\n/** Start Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n.envato-block__preview{overflow: visible;}\n\n/** End Block Kit CSS: 135-3-c665d4805631b9a8bf464e65129b2f58 **/\n\n\n\n/** Start Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n.envato-block__preview{overflow: visible;}\n\n/* Envato Kit 141 Custom Styles - Applied to the element under Advanced */\n\n.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{\n	text-align: center;\n}\n.envato-kit-141-top-0 h1,\n.envato-kit-141-top-0 h2,\n.envato-kit-141-top-0 h3,\n.envato-kit-141-top-0 h4,\n.envato-kit-141-top-0 h5,\n.envato-kit-141-top-0 h6,\n.envato-kit-141-top-0 p {\n	margin-top: 0;\n}\n\n.envato-kit-141-newsletter-inline .elementor-field-textual.elementor-size-md {\n	padding-left: 1.5rem;\n	padding-right: 1.5rem;\n}\n\n.envato-kit-141-bottom-0 p {\n	margin-bottom: 0;\n}\n\n.envato-kit-141-bottom-8 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {\n	margin-bottom: .5rem;\n}\n\n.envato-kit-141.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container {\n	padding-bottom: 52px;\n}\n\n.envato-kit-141-display-inline {\n	display: inline-block;\n}\n\n.envato-kit-141 .elementor-slick-slider ul.slick-dots {\n	bottom: -40px;\n}\n\n/** End Block Kit CSS: 144-3-3a7d335f39a8579c20cdf02f8d462582 **/\n\n\n\n/** Start Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n.envato-block__preview{overflow: visible;}\n\n/*Kit 69 Custom Styling for buttons */\n.envato-kit-69-slide-btn .elementor-button,\n.envato-kit-69-cta-btn .elementor-button,\n.envato-kit-69-flip-btn .elementor-button{\n	border-left: 0px !important;\n	border-bottom: 0px !important;\n	border-right: 0px !important;\n	padding: 15px 0 0 !important;\n}\n.envato-kit-69-slide-btn .elementor-slide-button:hover,\n.envato-kit-69-cta-btn .elementor-button:hover,\n.envato-kit-69-flip-btn .elementor-button:hover{\n	margin-bottom: 20px;\n}\n.envato-kit-69-menu .elementor-nav-menu--main a:hover{\n	margin-top: -7px;\n	padding-top: 4px;\n	border-bottom: 1px solid #FFF;\n}\n/* Fix menu dropdown width */\n.envato-kit-69-menu .elementor-nav-menu--dropdown{\n	width: 100% !important;\n}\n\n/** End Block Kit CSS: 72-3-34d2cc762876498c8f6be5405a48e6e2 **/\n\n\n\n/** Start Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n.envato-block__preview{overflow: visible;}\n/* Material Button Click Effect */\n.envato-kit-140-material-hit .menu-item a,\n.envato-kit-140-material-button .elementor-button{\n  background-position: center;\n  transition: background 0.8s;\n}\n.envato-kit-140-material-hit .menu-item a:hover,\n.envato-kit-140-material-button .elementor-button:hover{\n  background: radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;\n}\n.envato-kit-140-material-hit .menu-item a:active,\n.envato-kit-140-material-button .elementor-button:active{\n  background-color: #FFF;\n  background-size: 100%;\n  transition: background 0s;\n}\n\n/* Field Shadow */\n.envato-kit-140-big-shadow-form .elementor-field-textual{\n	box-shadow: 0 20px 30px rgba(0,0,0, .05);\n}\n\n/* FAQ */\n.envato-kit-140-faq .elementor-accordion .elementor-accordion-item{\n	border-width: 0 0 1px !important;\n}\n\n/* Scrollable Columns */\n.envato-kit-140-scrollable{\n	 height: 100%;\n   overflow: auto;\n   overflow-x: hidden;\n}\n\n/* ImageBox: No Space */\n.envato-kit-140-imagebox-nospace:hover{\n	transform: scale(1.1);\n	transition: all 0.3s;\n}\n.envato-kit-140-imagebox-nospace figure{\n	line-height: 0;\n}\n\n.envato-kit-140-slide .elementor-slide-content{\n	background: #FFF;\n	margin-left: -60px;\n	padding: 1em;\n}\n.envato-kit-140-carousel .slick-active:not(.slick-current)  img{\n	padding: 20px !important;\n	transition: all .9s;\n}\n\n/** End Block Kit CSS: 143-3-7969bb877702491bc5ca272e536ada9d **/\n\n\n\n/** Start Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n.envato-kit-102-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n\n/** End Block Kit CSS: 105-3-0fb64e69c49a8e10692d28840c54ef95 **/\n\n\n\n/** Start Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n.envato-kit-138-bracket .elementor-widget-container > *:before{\n	content:\"[\";\n	color:#ffab00;\n	display:inline-block;\n	margin-right:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n.envato-kit-138-bracket .elementor-widget-container > *:after{\n	content:\"]\";\n	color:#ffab00;\n	display:inline-block;\n	margin-left:4px;\n	line-height:1em;\n	position:relative;\n	top:-1px;\n}\n\n/** End Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/\n\n\n\n/** Start Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n.envato-block__preview{overflow: visible !important;}\n\n/** End Block Kit CSS: 136-3-fc37602abad173a9d9d95d89bbe6bb80 **/\n\n\n\n/** Start Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n.envato-kit-66-menu .e--pointer-framed .elementor-item:before{\n	border-radius:1px;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper{\n	position:relative;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit{\n	position:static;\n}\n\n.envato-kit-66-subscription-form .elementor-form-fields-wrapper .elementor-field-type-submit button{\n	position: absolute;\n    top: 50%;\n    right: 6px;\n    transform: translate(0, -50%);\n		-moz-transform: translate(0, -50%);\n		-webmit-transform: translate(0, -50%);\n}\n\n.envato-kit-66-testi-slider .elementor-testimonial__footer{\n	margin-top: -60px !important;\n	z-index: 99;\n  position: relative;\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	left:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-prev:before{\n	display:block;\n	margin-top:0px;\n	margin-left:0px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next{\n	width:50px;\n	height:50px;\n	background-color:#ffffff !important;\n	transform:rotate(45deg);\n	-moz-transform:rotate(45deg);\n	-webkit-transform:rotate(45deg);\n	right:-25px !important;\n	-webkit-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	-moz-box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.32);\n}\n\n.envato-kit-66-featured-slider .elementor-slides .slick-next:before{\n	display:block;\n	margin-top:-5px;\n	margin-right:-5px;\n	transform:rotate(-45deg);\n	-moz-transform:rotate(-45deg);\n	-webkit-transform:rotate(-45deg);\n}\n\n.envato-kit-66-orangetext{\n	color:#f4511e;\n}\n\n.envato-kit-66-countdown .elementor-countdown-label{\n	display:inline-block !important;\n	border:2px solid rgba(255,255,255,0.2);\n	padding:9px 20px;\n}\n\n/** End Block Kit CSS: 69-3-4f8cfb8a1a68ec007f2be7a02bdeadd9 **/\n\n\n\n/** Start Block Kit CSS: 33-3-f2d4515681d0cdeb2a000d0405e47669 **/\n\n.envato-kit-30-phone-overlay {\n	position: absolute !important;\n	display: block !important;\n	top: 0%;\n	left: 0%;\n	right: 0%;\n	margin: auto;\n	z-index: 1;\n}\n.envato-kit-30-div-rotate{\n	transform: rotate(90deg);\n}\n\n/** End Block Kit CSS: 33-3-f2d4515681d0cdeb2a000d0405e47669 **/\n\n','twentytwenty','','inherit','closed','closed','','90-revision-v1','','','2022-05-18 12:19:00','2022-05-18 12:19:00','',90,'https://demoweblinks.in/aahan/?p=435',0,'revision','',0),(436,1,'2022-05-18 12:28:35','2022-05-18 12:28:35','','Our Approach','','inherit','closed','closed','','411-revision-v1','','','2022-05-18 12:28:35','2022-05-18 12:28:35','',411,'https://demoweblinks.in/aahan/?p=436',0,'revision','',0),(437,1,'2022-05-18 12:28:35','2022-05-18 12:28:35','','Our Approach','','inherit','closed','closed','','411-revision-v1','','','2022-05-18 12:28:35','2022-05-18 12:28:35','',411,'https://demoweblinks.in/aahan/?p=437',0,'revision','',0),(438,1,'2022-05-18 12:28:35','2022-05-18 12:28:35','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Approach</h2>		\n			<h2>A multi-stakeholder model</h2>		\n		<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.</p>		\n					<ul>\n							<li>\n										S: School, Sarpanch &members of the local self-government (Panchayat).\n									</li>\n								<li>\n										M: Media person\n									</li>\n								<li>\n										A: Administration and Academia\n									</li>\n								<li>\n										R: Regional Leaders: influential people respected by Adivasi, local NGOs\n									</li>\n								<li>\n										T: Tribal Families\n									</li>\n						</ul>\n		<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.</p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and <strong>the first ray of light shines through.</strong> They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.</p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community’s help, volunteers to ensure higher enrolment and improved outcomes.</p>		\n			<h2>The Aahan Model – A.C.E\n</h2>		\n			<h1>Awareness</h1>		\n		<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br />This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.</p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h1>Collective Action</h1>		\n		<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.</p><p>This is a vital driver for the transformation in critical issues of gender discrimination.</p>		\n			<h1>Education, knowledge and skills</h1>		\n		<p>Education, knowledge and skills are fundamental to enable girls’ to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.</p>		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Approach','','inherit','closed','closed','','411-revision-v1','','','2022-05-18 12:28:35','2022-05-18 12:28:35','',411,'https://demoweblinks.in/aahan/?p=438',0,'revision','',0),(439,1,'2022-05-18 12:29:30','2022-05-18 12:29:30','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Approach</h2>		\n			<h2>A multi-stakeholder model</h2>		\n		<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.</p>		\n					<ul>\n							<li>\n										S: School, Sarpanch &members of the local self-government (Panchayat).\n									</li>\n								<li>\n										M: Media person\n									</li>\n								<li>\n										A: Administration and Academia\n									</li>\n								<li>\n										R: Regional Leaders: influential people respected by Adivasi, local NGOs\n									</li>\n								<li>\n										T: Tribal Families\n									</li>\n						</ul>\n		<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.</p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and <strong>the first ray of light shines through.</strong> They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.</p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community’s help, volunteers to ensure higher enrolment and improved outcomes.</p>		\n			<h2>The Aahan Model – A.C.E\n</h2>		\n			<h1>Awareness</h1>		\n		<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br />This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.</p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h1>Collective Action</h1>		\n		<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.</p><p>This is a vital driver for the transformation in critical issues of gender discrimination.</p>		\n			<h1>Education, knowledge and skills</h1>		\n		<p>Education, knowledge and skills are fundamental to enable girls’ to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.</p>		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Approach','','inherit','closed','closed','','411-revision-v1','','','2022-05-18 12:29:30','2022-05-18 12:29:30','',411,'https://demoweblinks.in/aahan/?p=439',0,'revision','',0),(440,1,'2022-05-18 12:29:31','2022-05-18 12:29:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Approach</h2>		\n			<h2>A multi-stakeholder model</h2>		\n		<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.</p>		\n					<ul>\n							<li>\n										S: School, Sarpanch &members of the local self-government (Panchayat).\n									</li>\n								<li>\n										M: Media person\n									</li>\n								<li>\n										A: Administration and Academia\n									</li>\n								<li>\n										R: Regional Leaders: influential people respected by Adivasi, local NGOs\n									</li>\n								<li>\n										T: Tribal Families\n									</li>\n						</ul>\n		<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.</p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and <strong>the first ray of light shines through.</strong> They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.</p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community’s help, volunteers to ensure higher enrolment and improved outcomes.</p>		\n			<h2>The Aahan Model – A.C.E\n</h2>		\n			<h1>Awareness</h1>		\n		<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br />This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.</p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h1>Collective Action</h1>		\n		<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.</p><p>This is a vital driver for the transformation in critical issues of gender discrimination.</p>		\n			<h1>Education, knowledge and skills</h1>		\n		<p>Education, knowledge and skills are fundamental to enable girls’ to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.</p>		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Approach','','inherit','closed','closed','','411-revision-v1','','','2022-05-18 12:29:31','2022-05-18 12:29:31','',411,'https://demoweblinks.in/aahan/?p=440',0,'revision','',0),(441,1,'2022-05-18 12:29:31','2022-05-18 12:29:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Approach</h2>		\n			<h2>A multi-stakeholder model</h2>		\n		<p>We partner with the S.M.A.R.T. community: Our multi-pronged approach involves working in a framework that involves different stakeholders to effect changes on the ground level.</p>		\n					<ul>\n							<li>\n										S: School, Sarpanch &members of the local self-government (Panchayat).\n									</li>\n								<li>\n										M: Media person\n									</li>\n								<li>\n										A: Administration and Academia\n									</li>\n								<li>\n										R: Regional Leaders: influential people respected by Adivasi, local NGOs\n									</li>\n								<li>\n										T: Tribal Families\n									</li>\n						</ul>\n		<p>Before developing programs to address issues of Gender-Based Violence, we conducted research and analysis of various potential programs, had conversations with multiple stakeholders and most importantly, spent time with the girls in the community to understand in-depth the practical challenges and issues.</p><p>It was evident that when girls meet and talk, their courage grows, awareness increases and <strong>the first ray of light shines through.</strong> They can see the possibilities and their potential. Make plans together and in solidarity with each other. When opportunities are added to this mix, the light shines a path forward.</p><p>From the learnings, Aahan Foundation built a multistakeholder approach to empower at-risk tribal girls. Aahan Foundation works in partnership with the Government, the community, and with the community’s help, volunteers to ensure higher enrolment and improved outcomes.</p>		\n			<h2>The Aahan Model – A.C.E\n</h2>		\n			<h1>Awareness</h1>		\n		<p>Girls of marginalised rural communities often lack the critical consciousness of their inequalities, sense of self, and rights.<br />This awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency.</p><p>Girls from the community, lead and inspire social change with empathy. They are motivated and empowered to participate in making a difference in the lives of other girls and themselves. Our experience has shown that empowerment initiatives are intensified when the awareness is raised by girls from their community, girls like them, girls facing similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h1>Collective Action</h1>		\n		<p>Girls standing together in solidarity with and for each other are a powerful tool for social transformation on a societal level. Girls gain social capital by building relationships and social networks that can provide tangible and intangible value and support. These networks strengthen critical consciousness and are fundamental to girls exercising leadership and participating in collective action.</p><p>This is a vital driver for the transformation in critical issues of gender discrimination.</p>		\n			<h1>Education, knowledge and skills</h1>		\n		<p>Education, knowledge and skills are fundamental to enable girls’ to make informed choices and effectively exercise their voice to achieve greater economic and social empowerment.</p>		\n															<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes-768x513.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yZDJmOTNkMyJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTJkMmY5M2QzIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2d2f93d3\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmQyZjkzZDMifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Approach','','inherit','closed','closed','','411-revision-v1','','','2022-05-18 12:29:31','2022-05-18 12:29:31','',411,'https://demoweblinks.in/aahan/?p=441',0,'revision','',0),(442,1,'2022-05-19 04:42:41','2022-05-18 12:30:13',' ','','','publish','closed','closed','','442','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',15,'https://demoweblinks.in/aahan/?p=442',4,'nav_menu_item','',0),(443,1,'2022-05-19 04:42:41','2022-05-18 12:30:13','','Our Team','','publish','closed','closed','','our-team','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',15,'https://demoweblinks.in/aahan/?p=443',3,'nav_menu_item','',0),(444,1,'2022-05-19 04:42:41','2022-05-18 12:30:13',' ','','','publish','closed','closed','','444','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',15,'https://demoweblinks.in/aahan/?p=444',2,'nav_menu_item','',0),(446,1,'2022-05-18 12:33:25','2022-05-18 12:33:25','','happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near.jpg','','inherit','open','closed','','happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near-jpg','','','2022-05-18 12:33:25','2022-05-18 12:33:25','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-multicultural-women-holding-cardboard-box-and-paper-bag-with-apples-while-standing-near.jpg',0,'attachment','image/jpeg',0),(447,1,'2022-05-18 12:33:44','2022-05-18 12:33:44','','Image-PZ7TQP6.jpg','','inherit','open','closed','','image-pz7tqp6-jpg','','','2022-05-18 12:33:44','2022-05-18 12:33:44','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-PZ7TQP6.jpg',0,'attachment','image/jpeg',0),(448,1,'2022-05-18 12:33:48','2022-05-18 12:33:48','','Image-PVZXQSC.jpg','','inherit','open','closed','','image-pvzxqsc-jpg','','','2022-05-18 12:33:48','2022-05-18 12:33:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-PVZXQSC.jpg',0,'attachment','image/jpeg',0),(449,1,'2022-05-18 12:33:50','2022-05-18 12:33:50','','Image-KEAZPUR.jpg','','inherit','open','closed','','image-keazpur-jpg','','','2022-05-18 12:33:50','2022-05-18 12:33:50','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-KEAZPUR.jpg',0,'attachment','image/jpeg',0),(450,1,'2022-05-18 12:33:55','2022-05-18 12:33:55','','placeholder.png','','inherit','open','closed','','placeholder-png-6','','','2022-05-18 12:33:55','2022-05-18 12:33:55','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-5.png',0,'attachment','image/png',0),(451,1,'2022-05-18 12:33:56','2022-05-18 12:33:56','','placeholder.png','','inherit','open','closed','','placeholder-png-7','','','2022-05-18 12:33:56','2022-05-18 12:33:56','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-6.png',0,'attachment','image/png',0),(452,1,'2022-05-18 12:33:57','2022-05-18 12:33:57','','placeholder.png','','inherit','open','closed','','placeholder-png-8','','','2022-05-18 12:33:57','2022-05-18 12:33:57','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-7.png',0,'attachment','image/png',0),(453,1,'2022-05-18 12:33:59','2022-05-18 12:33:59','','placeholder.png','','inherit','open','closed','','placeholder-png-9','','','2022-05-18 12:33:59','2022-05-18 12:33:59','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-8.png',0,'attachment','image/png',0),(454,1,'2022-05-18 12:33:59','2022-05-18 12:33:59','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Volunteer</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Volunteer\n									</li>\n						</ul>\n			<h5>Our Volunteers</h5>		\n			<h2>Meet With Them</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-7GJ5W9M.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Armaan Cullen\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-VZKUZZD.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Esha Wheatley\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-5S79FQC.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Natalie Whyte\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-PZ7TQP6.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Rodney Britt\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-PVZXQSC.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Mya Hines\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-KEAZPUR.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Aalia Bass\n				</h3>				\n					<p>Volunteer</p>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h4>\n						\"Give A Hand To Make <br> The Better World\"\n				</h4>		\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			<h5>Requirements</h5>		\n			<h2>Become A Volunteer</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat		\n					<ul>\n							<li>\n										Quis nostrud exercitation ullamco laboris\n									</li>\n								<li>\n										Duis aute irure dolor in reprehenderit in voluptate\n									</li>\n								<li>\n										Excepteur sint occaecat cupidatat non proident\n									</li>\n								<li>\n										Consectetur adipiscing elit, sed do eiusmod tempor\n									</li>\n						</ul>\n			<h3>Process</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco','Volunteer','','publish','closed','closed','','volunteer','','','2022-05-18 12:34:00','2022-05-18 12:34:00','',0,'https://demoweblinks.in/aahan/?elementor_library=volunteer',0,'elementor_library','',0),(455,1,'2022-05-18 12:33:59','2022-05-18 12:33:59','','Volunteer','','inherit','closed','closed','','454-revision-v1','','','2022-05-18 12:33:59','2022-05-18 12:33:59','',454,'https://demoweblinks.in/aahan/?p=455',0,'revision','',0),(456,1,'2022-05-18 12:34:00','2022-05-18 12:34:00','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Volunteer</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Volunteer\n									</li>\n						</ul>\n			<h5>Our Volunteers</h5>		\n			<h2>Meet With Them</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-7GJ5W9M.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Armaan Cullen\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-VZKUZZD.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Esha Wheatley\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-5S79FQC.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Natalie Whyte\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-PZ7TQP6.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Rodney Britt\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-PVZXQSC.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Mya Hines\n				</h3>				\n					<p>Volunteer</p>\n													<img width=\"1024\" height=\"1007\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Image-KEAZPUR.jpg\" alt=\"\" />												\n								<h2>\n																																	</h2>\n								<p></p>\n									<ul>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n			<li>\n			<a >\n							</a>\n		</li>\n	</ul>\n			<h3>\n						Aalia Bass\n				</h3>				\n					<p>Volunteer</p>\n			<h5>Our Funfact</h5>		\n			<h2>You Have The Power Today To Change Tomorrow</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1284\" height=\"1851\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" />															\n												0\n						+											\n					<h3>Children Saved</h3>							\n												0\n						+											\n					<h3>Campaigns Running</h3>							\n												0\n						+											\n					<h3>Total Volunteers</h3>							\n												0\n						+											\n					<h3>Total Country</h3>							\n			<h4>\n						\"Give A Hand To Make <br> The Better World\"\n				</h4>		\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			<h5>Requirements</h5>		\n			<h2>Become A Volunteer</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat		\n					<ul>\n							<li>\n										Quis nostrud exercitation ullamco laboris\n									</li>\n								<li>\n										Duis aute irure dolor in reprehenderit in voluptate\n									</li>\n								<li>\n										Excepteur sint occaecat cupidatat non proident\n									</li>\n								<li>\n										Consectetur adipiscing elit, sed do eiusmod tempor\n									</li>\n						</ul>\n			<h3>Process</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco','Volunteer','','inherit','closed','closed','','454-revision-v1','','','2022-05-18 12:34:00','2022-05-18 12:34:00','',454,'https://demoweblinks.in/aahan/?p=456',0,'revision','',0),(457,1,'2022-05-18 12:42:07','2022-05-18 12:42:07','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 12:42:07','2022-05-18 12:42:07','',17,'https://demoweblinks.in/aahan/?p=457',0,'revision','',0),(458,1,'2022-05-18 12:42:07','2022-05-18 12:42:07','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 12:42:07','2022-05-18 12:42:07','',17,'https://demoweblinks.in/aahan/?p=458',0,'revision','',0),(459,1,'2022-05-18 12:42:07','2022-05-18 12:42:07','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Programs</h2>		\n			<h2>New School For Childrens</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.		\n			<h3>Summary</h3>		\n		<p>Aahan Foundation’s programs aim to facilitate the individual girl’s journey towards empowerment through awareness, support and resources that make that journey possible.</p>		\n					<ul>\n							<li>\n										Education and training on 21st Century skills\n									</li>\n								<li>\n										Collective action through Awareness, Community and Network Building\n									</li>\n								<li>\n										Arts and Sports\n									</li>\n								<li>\n										Capacity and Agency Building\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo		\n			<h3>Our Mission</h3>		\n		<p>Aahan Foundation works toward giving agency to girls in rural tribal communities who are vulnerable and at-risk of Gender-Based – Violence. Our Programs use a multipronged approach. Girls experience inequity differently depending on how gender issues intersect with their lives depending on age, economic and family conditions.</p>		\n		<i> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris. </i>Marlene Redman - Founder HumaniteLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoShare This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.e-container.e-container--row .elementor-spacer-inner{width:var(--spacer-size)}.e-container.e-container--column .elementor-spacer-inner,.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00ZjNlMTFjNiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTRmM2UxMWM2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4f3e11c6\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNGYzZTExYzYifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Programs','','inherit','closed','closed','','17-revision-v1','','','2022-05-18 12:42:07','2022-05-18 12:42:07','',17,'https://demoweblinks.in/aahan/?p=459',0,'revision','',0),(460,1,'2022-05-18 12:54:15','2022-05-18 12:54:15','','our team','','inherit','closed','closed','','413-revision-v1','','','2022-05-18 12:54:15','2022-05-18 12:54:15','',413,'https://demoweblinks.in/aahan/?p=460',0,'revision','',0),(461,1,'2022-05-18 12:54:15','2022-05-18 12:54:15','','our team','','inherit','closed','closed','','413-revision-v1','','','2022-05-18 12:54:15','2022-05-18 12:54:15','',413,'https://demoweblinks.in/aahan/?p=461',0,'revision','',0),(462,1,'2022-05-18 12:54:15','2022-05-18 12:54:15','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Team</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"347\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-1024x613.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-1024x613.jpeg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-300x180.jpeg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-768x460.jpeg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663-1200x718.jpeg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/pexels-photo-209663.jpeg 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h1>Dr Rashmi Tiwari</h1>		\n		<p>Founder and Director of the Aahan Foundation, a Doctorate in Economics, and a Diploma in Sustainability and Responsible Leadership from The Swedish Institute has held leadership positions in Corporates before she founded the NGO. She was the Director at the American Chamber of Commerce (AMCHAM) in India and Executive Director at The CEO Clubs India.</p><p>She launched Aahan Foundation in 2013 to address a string of interconnected social problems related to girls &amp; women, including Gender Inequality, Girl Child Trafficking, Child Marriage, Poverty, Lack of awareness and facilities for Health, Hygiene and Sanitation, Illiteracy.</p><p>She uses her experience as a certified leadership coach using tools based on the latest research on brain science to help underprivileged girls transform their personal and professional lives.</p><p>This is a vital driver for the transformation in critical issues of gender discrimination.</p>		\n		<p>” As part of a social welfare funding project, I visited tribal homes in Orissa, India. During one of the visits to a small village, parents of minor girls as young as 5-6 years old offered them to me in exchange for money. The ground reality of the red corridor in the country shook me to the core. This marked the watershed moment of my life. Returning to Delhi, I decided to quit my corporate job to visit tribal areas of India in an attempt to understand the extent of trafficking and empower tribal girls and women.”</p><p>Dr Rashmi Tiwari</p><p>Her efforts have been widely recognized. She is a Fellow of Vital Voices (USA), Fellow of SIMP. She was selected as one of India’s emerging women business leaders under the Fortune/US State Department Leadership Mentorship Program. </p><ul><li> Top 100 Social Enablers 2017</li><li>Women Rights Award</li><li>Chosen as Tejaswini</li><li>The Good Crusader </li><li>Top 100 Women Leaders by TIAW</li><li>VVLead Fellow</li><li>Participant Global Ambassador Program</li><li>“Pushpalata Ranade National Bravery Award”</li><li>US State Department &amp; Fortune Magazine Mentorship Program</li></ul>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor-pro/assets/css/widget-flip-box.min.css\">		\n			<h2>Bhavleen Kaur Bali, Director-Education</h2>		\n		<p>For Bhavleen, to become a teacher and shape young minds to become their best versions has been her childhood dream. She could never imagine herself doing anything else and she took every step to achieve excellence in this field and achieve her dream.</p><p>After completing her Masters in commerce, she completed her B.Ed and has been in the education space ever since. She worked in some of the most recognised education establishments in the country before crossing paths with Aahan and found this whole new realm to not only educate kids coming from marginalised backgrounds but also the ‘Adivasi girls’ who are survivors of gender-based violence.</p><p>These girls touched her heart the moment she met them and she devoted herself to the cause by taking over the reins of the education team of Aahan. She is setting up replicable models for teaching girls and loves working every day in a job that she has a heart and soul in.</p>		\n			<h2>Kriti Sinha, Edumentor & Storyteller\n</h2>		\n		<p>A graduate of Kamala Nehru College in Psychology and Human Resource Management, Kriti is currently pursuing her Master’s in Applied Psychology from Amity University.</p><p>Journey with Aahan and Adivasi girls started out as an internship but slowly made her a part of something even bigger. Her interaction with the girls in Jharkhand exposed her to the bitter truth of the inequalities of our education system and the wide divide between rural and urban areas.</p><p>This led her to her mission of mentoring and educating Adivasi girls with foundational level communication skills and through the CREATE model she aims to go a step further by focusing on social-emotional development.</p><p>Creating a safe space has helped the girls come forward with their stories of courage and everything that they have ever been through. She aims to bring forward these stories and help these girls break the glass ceiling.</p><p>She is also interested in understanding the impact of Domestic Violence on the mental health and development of women and children in Jharkhand.</p><p>Aahan supported Artee through our Fellowship program ‘Urja’ in which, besides special training on Madhubani painting, she learnt skills such as leadership and digital literacy. Through this program, she received training from national level Madhubani artists.</p>		\n			<h2>Program Coordinator Artee K Munda\n</h2>		\n		<p>An Udan Fellow of 2017, she is the Program Co-ordinator of Aahan and oversees all the programs run at the ground level. She works towards helping the community understand the ill effects of trafficking, child marriage, girl child rights through paintings. She wants to use her art to create awareness about the GBV prevalent in tribal society, rich tribal art and culture and depict the dreams of Aahan girls. She is also trying to revive the dying art of Sohrai.</p>		\n			<h2>Rupanti Munda, Sports Coordinator\n</h2>		\n		<p>Rupanti, born in Dhoti Village in Latehar District of Jharkhand is a Braveheart. A captain of the Aahan Bravehearts Football team, Rupanti has been awarded by the Jharkhand Government for her contribution to football at the grassroots. From holding village level community development programs to training girls in villages in Jharkhand, Rupanti plans and coordinates Aahan Foundation’s sports initiative.</p><p>Rupanti visits extremely difficult and dangerous areas in Jharkhand to meet with girls and their parents. She has prevented many girls from being trafficked and married off at an early age.</p>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yY2Y3ZTA4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0yY2Y3ZTA4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTJjZjdlMDgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmNmN2UwODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTJjZjdlMDgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-2cf7e080\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMmNmN2UwODAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','our team','','inherit','closed','closed','','413-revision-v1','','','2022-05-18 12:54:15','2022-05-18 12:54:15','',413,'https://demoweblinks.in/aahan/?p=462',0,'revision','',0),(464,1,'2022-05-18 13:18:47','2022-05-18 13:18:47','','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 13:18:47','2022-05-18 13:18:47','',415,'https://demoweblinks.in/aahan/?p=464',0,'revision','',0),(465,1,'2022-05-18 13:18:47','2022-05-18 13:18:47','','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 13:18:47','2022-05-18 13:18:47','',415,'https://demoweblinks.in/aahan/?p=465',0,'revision','',0),(466,1,'2022-05-18 13:18:48','2022-05-18 13:18:48','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 13:18:48','2022-05-18 13:18:48','',415,'https://demoweblinks.in/aahan/?p=466',0,'revision','',0),(469,1,'2022-05-18 13:43:18','2022-05-18 13:43:18','','Vertical-timeline -> Vertical Timeline Style One','','publish','closed','closed','','vertical-timeline-vertical-timeline-style-one','','','2022-05-18 13:43:18','2022-05-18 13:43:18','',0,'https://demoweblinks.in/aahan/?elementor_library=vertical-timeline-vertical-timeline-style-one',0,'elementor_library','',0),(470,1,'2022-05-18 13:45:27','2022-05-18 13:45:27','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 13:45:27','2022-05-18 13:45:27','',415,'https://demoweblinks.in/aahan/?p=470',0,'revision','',0),(471,1,'2022-05-18 13:45:27','2022-05-18 13:45:27','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 13:45:27','2022-05-18 13:45:27','',415,'https://demoweblinks.in/aahan/?p=471',0,'revision','',0),(472,1,'2022-05-18 13:45:27','2022-05-18 13:45:27','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 13:45:27','2022-05-18 13:45:27','',415,'https://demoweblinks.in/aahan/?p=472',0,'revision','',0),(473,1,'2022-05-18 13:47:32','2022-05-18 13:47:32','','Vertical-timeline -> Vertical Timeline Style Two','','publish','closed','closed','','vertical-timeline-vertical-timeline-style-two','','','2022-05-18 13:47:32','2022-05-18 13:47:32','',0,'https://demoweblinks.in/aahan/?elementor_library=vertical-timeline-vertical-timeline-style-two',0,'elementor_library','',0),(475,1,'2022-05-18 13:53:10','2022-05-18 13:53:10','','placeholder-530.png','','inherit','open','closed','','placeholder-530-png','','','2022-05-18 13:53:10','2022-05-18 13:53:10','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-530.png',0,'attachment','image/png',0),(476,1,'2022-05-18 13:53:12','2022-05-18 13:53:12','','slider_img-7.jpeg','','inherit','open','closed','','slider_img-7-jpeg','','','2022-05-18 13:53:12','2022-05-18 13:53:12','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/slider_img-7.jpeg',0,'attachment','image/jpeg',0),(477,1,'2022-05-18 13:53:15','2022-05-18 13:53:15','','placeholder-531.png','','inherit','open','closed','','placeholder-531-png','','','2022-05-18 13:53:15','2022-05-18 13:53:15','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-531.png',0,'attachment','image/png',0),(478,1,'2022-05-18 13:53:16','2022-05-18 13:53:16','','Features_img.jpeg','','inherit','open','closed','','features_img-jpeg','','','2022-05-18 13:53:16','2022-05-18 13:53:16','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Features_img.jpeg',0,'attachment','image/jpeg',0),(479,1,'2022-05-18 13:53:16','2022-05-18 13:53:16','','placeholder-532.png','','inherit','open','closed','','placeholder-532-png','','','2022-05-18 13:53:16','2022-05-18 13:53:16','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-532.png',0,'attachment','image/png',0),(480,1,'2022-05-18 13:53:18','2022-05-18 13:53:18','','placeholder-533.png','','inherit','open','closed','','placeholder-533-png','','','2022-05-18 13:53:18','2022-05-18 13:53:18','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-533.png',0,'attachment','image/png',0),(481,1,'2022-05-18 13:53:19','2022-05-18 13:53:19','','placeholder-534.png','','inherit','open','closed','','placeholder-534-png','','','2022-05-18 13:53:19','2022-05-18 13:53:19','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-534.png',0,'attachment','image/png',0),(482,1,'2022-05-18 13:53:21','2022-05-18 13:53:21','','placeholder-535.png','','inherit','open','closed','','placeholder-535-png','','','2022-05-18 13:53:21','2022-05-18 13:53:21','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-535.png',0,'attachment','image/png',0),(483,1,'2022-05-18 13:53:22','2022-05-18 13:53:22','','placeholder-536.png','','inherit','open','closed','','placeholder-536-png','','','2022-05-18 13:53:22','2022-05-18 13:53:22','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-536.png',0,'attachment','image/png',0),(484,1,'2022-05-18 13:53:24','2022-05-18 13:53:24','','placeholder-537.png','','inherit','open','closed','','placeholder-537-png','','','2022-05-18 13:53:24','2022-05-18 13:53:24','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-537.png',0,'attachment','image/png',0),(485,1,'2022-05-18 13:53:25','2022-05-18 13:53:25','','placeholder-538.png','','inherit','open','closed','','placeholder-538-png','','','2022-05-18 13:53:25','2022-05-18 13:53:25','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-538.png',0,'attachment','image/png',0),(486,1,'2022-05-18 13:53:26','2022-05-18 13:53:26','','placeholder-539.png','','inherit','open','closed','','placeholder-539-png','','','2022-05-18 13:53:26','2022-05-18 13:53:26','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-539.png',0,'attachment','image/png',0),(487,1,'2022-05-18 13:53:27','2022-05-18 13:53:27','','placeholder-540.png','','inherit','open','closed','','placeholder-540-png','','','2022-05-18 13:53:27','2022-05-18 13:53:27','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-540.png',0,'attachment','image/png',0),(488,1,'2022-05-18 13:53:28','2022-05-18 13:53:28','','placeholder-541.png','','inherit','open','closed','','placeholder-541-png','','','2022-05-18 13:53:28','2022-05-18 13:53:28','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-541.png',0,'attachment','image/png',0),(489,1,'2022-05-18 13:53:30','2022-05-18 13:53:30','','placeholder-542.png','','inherit','open','closed','','placeholder-542-png','','','2022-05-18 13:53:30','2022-05-18 13:53:30','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-542.png',0,'attachment','image/png',0),(490,1,'2022-05-18 13:53:31','2022-05-18 13:53:31','','placeholder-543.png','','inherit','open','closed','','placeholder-543-png','','','2022-05-18 13:53:31','2022-05-18 13:53:31','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-543.png',0,'attachment','image/png',0),(491,1,'2022-05-18 13:53:32','2022-05-18 13:53:32','','placeholder-544.png','','inherit','open','closed','','placeholder-544-png','','','2022-05-18 13:53:32','2022-05-18 13:53:32','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-544.png',0,'attachment','image/png',0),(492,1,'2022-05-18 13:53:33','2022-05-18 13:53:33','','placeholder-545.png','','inherit','open','closed','','placeholder-545-png','','','2022-05-18 13:53:33','2022-05-18 13:53:33','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-545.png',0,'attachment','image/png',0),(493,1,'2022-05-18 13:53:35','2022-05-18 13:53:35','','placeholder-546.png','','inherit','open','closed','','placeholder-546-png','','','2022-05-18 13:53:35','2022-05-18 13:53:35','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-546.png',0,'attachment','image/png',0),(494,1,'2022-05-18 13:53:36','2022-05-18 13:53:36','','placeholder-547.png','','inherit','open','closed','','placeholder-547-png','','','2022-05-18 13:53:36','2022-05-18 13:53:36','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-547.png',0,'attachment','image/png',0),(495,1,'2022-05-18 13:53:37','2022-05-18 13:53:37','','Donation_img.jpeg','','inherit','open','closed','','donation_img-jpeg','','','2022-05-18 13:53:37','2022-05-18 13:53:37','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Donation_img.jpeg',0,'attachment','image/jpeg',0),(496,1,'2022-05-18 13:53:39','2022-05-18 13:53:39','','placeholder-548.png','','inherit','open','closed','','placeholder-548-png','','','2022-05-18 13:53:39','2022-05-18 13:53:39','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-548.png',0,'attachment','image/png',0),(497,1,'2022-05-18 13:53:40','2022-05-18 13:53:40','','Political.png','','inherit','open','closed','','political-png','','','2022-05-18 13:53:40','2022-05-18 13:53:40','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Political.png',0,'attachment','image/png',0),(498,1,'2022-05-18 13:53:40','2022-05-18 13:53:40','','placeholder-549.png','','inherit','open','closed','','placeholder-549-png','','','2022-05-18 13:53:40','2022-05-18 13:53:40','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-549.png',0,'attachment','image/png',0),(499,1,'2022-05-18 13:53:42','2022-05-18 13:53:42','','placeholder-550.png','','inherit','open','closed','','placeholder-550-png','','','2022-05-18 13:53:42','2022-05-18 13:53:42','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-550.png',0,'attachment','image/png',0),(500,1,'2022-05-18 13:53:43','2022-05-18 13:53:43','','placeholder-551.png','','inherit','open','closed','','placeholder-551-png','','','2022-05-18 13:53:43','2022-05-18 13:53:43','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-551.png',0,'attachment','image/png',0),(501,1,'2022-05-18 13:53:44','2022-05-18 13:53:44','','placeholder-552.png','','inherit','open','closed','','placeholder-552-png','','','2022-05-18 13:53:44','2022-05-18 13:53:44','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-552.png',0,'attachment','image/png',0),(502,1,'2022-05-18 13:53:45','2022-05-18 13:53:45','','placeholder-553.png','','inherit','open','closed','','placeholder-553-png','','','2022-05-18 13:53:45','2022-05-18 13:53:45','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-553.png',0,'attachment','image/png',0),(503,1,'2022-05-18 13:53:46','2022-05-18 13:53:46','','placeholder-554.png','','inherit','open','closed','','placeholder-554-png','','','2022-05-18 13:53:46','2022-05-18 13:53:46','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-554.png',0,'attachment','image/png',0),(504,1,'2022-05-18 13:53:47','2022-05-18 13:53:47','','Volunteer_img.jpeg','','inherit','open','closed','','volunteer_img-jpeg','','','2022-05-18 13:53:47','2022-05-18 13:53:47','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Volunteer_img.jpeg',0,'attachment','image/jpeg',0),(505,1,'2022-05-18 13:53:49','2022-05-18 13:53:49','','placeholder-555.png','','inherit','open','closed','','placeholder-555-png','','','2022-05-18 13:53:49','2022-05-18 13:53:49','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-555.png',0,'attachment','image/png',0),(506,1,'2022-05-18 13:53:50','2022-05-18 13:53:50','','placeholder-556.png','','inherit','open','closed','','placeholder-556-png','','','2022-05-18 13:53:50','2022-05-18 13:53:50','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-556.png',0,'attachment','image/png',0),(507,1,'2022-05-18 13:53:51','2022-05-18 13:53:51','','placeholder-557.png','','inherit','open','closed','','placeholder-557-png','','','2022-05-18 13:53:51','2022-05-18 13:53:51','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-557.png',0,'attachment','image/png',0),(508,1,'2022-05-18 13:53:52','2022-05-18 13:53:52','','placeholder-558.png','','inherit','open','closed','','placeholder-558-png','','','2022-05-18 13:53:52','2022-05-18 13:53:52','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-558.png',0,'attachment','image/png',0),(509,1,'2022-05-18 13:53:54','2022-05-18 13:53:54','','placeholder-559.png','','inherit','open','closed','','placeholder-559-png','','','2022-05-18 13:53:54','2022-05-18 13:53:54','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-559.png',0,'attachment','image/png',0),(510,1,'2022-05-18 13:53:55','2022-05-18 13:53:55','','placeholder-560.png','','inherit','open','closed','','placeholder-560-png','','','2022-05-18 13:53:55','2022-05-18 13:53:55','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-560.png',0,'attachment','image/png',0),(511,1,'2022-05-18 13:56:01','2022-05-18 13:56:01','','placeholder-561.png','','inherit','open','closed','','placeholder-561-png','','','2022-05-18 13:56:01','2022-05-18 13:56:01','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-561.png',0,'attachment','image/png',0),(512,1,'2022-05-18 13:56:02','2022-05-18 13:56:02','','Eventssssss.png','','inherit','open','closed','','eventssssss-png','','','2022-05-18 13:56:02','2022-05-18 13:56:02','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Eventssssss.png',0,'attachment','image/png',0),(513,1,'2022-05-18 13:56:21','2022-05-18 13:56:21','','placeholder-562.png','','inherit','open','closed','','placeholder-562-png','','','2022-05-18 13:56:21','2022-05-18 13:56:21','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-562.png',0,'attachment','image/png',0),(514,1,'2022-05-18 13:56:22','2022-05-18 13:56:22','','left_imagsasase1.png','','inherit','open','closed','','left_imagsasase1-png','','','2022-05-18 13:56:22','2022-05-18 13:56:22','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/left_imagsasase1.png',0,'attachment','image/png',0),(515,1,'2022-05-18 13:56:23','2022-05-18 13:56:23','','placeholder-563.png','','inherit','open','closed','','placeholder-563-png','','','2022-05-18 13:56:23','2022-05-18 13:56:23','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-563.png',0,'attachment','image/png',0),(516,1,'2022-05-18 13:56:24','2022-05-18 13:56:24','','01-1.png','','inherit','open','closed','','01-1-png','','','2022-05-18 13:56:24','2022-05-18 13:56:24','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/01-1.png',0,'attachment','image/png',0),(517,1,'2022-05-18 13:56:25','2022-05-18 13:56:25','','02.png','','inherit','open','closed','','02-png','','','2022-05-18 13:56:25','2022-05-18 13:56:25','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/02.png',0,'attachment','image/png',0),(518,1,'2022-05-18 13:56:26','2022-05-18 13:56:26','','03.png','','inherit','open','closed','','03-png','','','2022-05-18 13:56:26','2022-05-18 13:56:26','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/03.png',0,'attachment','image/png',0),(519,1,'2022-05-18 13:56:27','2022-05-18 13:56:27','','partner_img-3-2.png','','inherit','open','closed','','partner_img-3-2-png','','','2022-05-18 13:56:27','2022-05-18 13:56:27','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/partner_img-3-2.png',0,'attachment','image/png',0),(520,1,'2022-05-18 13:56:28','2022-05-18 13:56:28','','placeholder-564.png','','inherit','open','closed','','placeholder-564-png','','','2022-05-18 13:56:28','2022-05-18 13:56:28','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-564.png',0,'attachment','image/png',0),(521,1,'2022-05-18 13:56:29','2022-05-18 13:56:29','','partner_img-6.png','','inherit','open','closed','','partner_img-6-png','','','2022-05-18 13:56:29','2022-05-18 13:56:29','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/partner_img-6.png',0,'attachment','image/png',0),(522,1,'2022-05-18 13:56:30','2022-05-18 13:56:30','','placeholder-565.png','','inherit','open','closed','','placeholder-565-png','','','2022-05-18 13:56:30','2022-05-18 13:56:30','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-565.png',0,'attachment','image/png',0),(523,1,'2022-05-18 13:56:31','2022-05-18 13:56:31','','partner_img-4-2.png','','inherit','open','closed','','partner_img-4-2-png','','','2022-05-18 13:56:31','2022-05-18 13:56:31','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/partner_img-4-2.png',0,'attachment','image/png',0),(524,1,'2022-05-18 13:56:31','2022-05-18 13:56:31','','placeholder-566.png','','inherit','open','closed','','placeholder-566-png','','','2022-05-18 13:56:31','2022-05-18 13:56:31','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-566.png',0,'attachment','image/png',0),(525,1,'2022-05-18 13:56:32','2022-05-18 13:56:32','','placeholder-567.png','','inherit','open','closed','','placeholder-567-png','','','2022-05-18 13:56:32','2022-05-18 13:56:32','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-567.png',0,'attachment','image/png',0),(526,1,'2022-05-18 13:56:33','2022-05-18 13:56:33','','partner_img-2-2.png','','inherit','open','closed','','partner_img-2-2-png','','','2022-05-18 13:56:33','2022-05-18 13:56:33','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/partner_img-2-2.png',0,'attachment','image/png',0),(527,1,'2022-05-18 13:56:33','2022-05-18 13:56:33','','placeholder-568.png','','inherit','open','closed','','placeholder-568-png','','','2022-05-18 13:56:33','2022-05-18 13:56:33','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-568.png',0,'attachment','image/png',0),(528,1,'2022-05-18 13:56:34','2022-05-18 13:56:34','','placeholder-569.png','','inherit','open','closed','','placeholder-569-png','','','2022-05-18 13:56:34','2022-05-18 13:56:34','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-569.png',0,'attachment','image/png',0),(529,1,'2022-05-18 13:56:35','2022-05-18 13:56:35','','placeholder-570.png','','inherit','open','closed','','placeholder-570-png','','','2022-05-18 13:56:35','2022-05-18 13:56:35','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-570.png',0,'attachment','image/png',0),(530,1,'2022-05-18 13:56:36','2022-05-18 13:56:36','','placeholder-571.png','','inherit','open','closed','','placeholder-571-png','','','2022-05-18 13:56:36','2022-05-18 13:56:36','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-571.png',0,'attachment','image/png',0),(531,1,'2022-05-18 13:57:35','2022-05-18 13:57:35','','placeholder-571.png','','inherit','open','closed','','placeholder-571-png-2','','','2022-05-18 13:57:35','2022-05-18 13:57:35','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-571-1.png',0,'attachment','image/png',0),(532,1,'2022-05-18 13:57:36','2022-05-18 13:57:36','','placeholder-572.png','','inherit','open','closed','','placeholder-572-png','','','2022-05-18 13:57:36','2022-05-18 13:57:36','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-572.png',0,'attachment','image/png',0),(533,1,'2022-05-18 13:57:37','2022-05-18 13:57:37','','placeholder-573.png','','inherit','open','closed','','placeholder-573-png','','','2022-05-18 13:57:37','2022-05-18 13:57:37','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-573.png',0,'attachment','image/png',0),(534,1,'2022-05-18 13:57:39','2022-05-18 13:57:39','','placeholder-574.png','','inherit','open','closed','','placeholder-574-png','','','2022-05-18 13:57:39','2022-05-18 13:57:39','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-574.png',0,'attachment','image/png',0),(535,1,'2022-05-18 13:57:40','2022-05-18 13:57:40','','placeholder-575.png','','inherit','open','closed','','placeholder-575-png','','','2022-05-18 13:57:40','2022-05-18 13:57:40','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-575.png',0,'attachment','image/png',0),(536,1,'2022-05-18 13:57:41','2022-05-18 13:57:41','','placeholder-576.png','','inherit','open','closed','','placeholder-576-png','','','2022-05-18 13:57:41','2022-05-18 13:57:41','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-576.png',0,'attachment','image/png',0),(537,1,'2022-05-18 13:57:42','2022-05-18 13:57:42','','ticket-bg_img.jpeg','','inherit','open','closed','','ticket-bg_img-jpeg','','','2022-05-18 13:57:42','2022-05-18 13:57:42','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ticket-bg_img.jpeg',0,'attachment','image/jpeg',0),(538,1,'2022-05-18 13:57:44','2022-05-18 13:57:44','','placeholder-577.png','','inherit','open','closed','','placeholder-577-png','','','2022-05-18 13:57:44','2022-05-18 13:57:44','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-577.png',0,'attachment','image/png',0),(539,1,'2022-05-18 13:57:45','2022-05-18 13:57:45','','placeholder-578.png','','inherit','open','closed','','placeholder-578-png','','','2022-05-18 13:57:45','2022-05-18 13:57:45','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-578.png',0,'attachment','image/png',0),(540,1,'2022-05-18 13:57:46','2022-05-18 13:57:46','','placeholder-579.png','','inherit','open','closed','','placeholder-579-png','','','2022-05-18 13:57:46','2022-05-18 13:57:46','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-579.png',0,'attachment','image/png',0),(541,1,'2022-05-18 13:57:47','2022-05-18 13:57:47','','Event.png','','inherit','open','closed','','event-png','','','2022-05-18 13:57:47','2022-05-18 13:57:47','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Event.png',0,'attachment','image/png',0),(542,1,'2022-05-18 13:57:48','2022-05-18 13:57:48','','location_img-3-1.jpeg','','inherit','open','closed','','location_img-3-1-jpeg','','','2022-05-18 13:57:48','2022-05-18 13:57:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/location_img-3-1.jpeg',0,'attachment','image/jpeg',0),(543,1,'2022-05-18 13:57:48','2022-05-18 13:57:48','','placeholder-580.png','','inherit','open','closed','','placeholder-580-png','','','2022-05-18 13:57:48','2022-05-18 13:57:48','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-580.png',0,'attachment','image/png',0),(545,1,'2022-05-18 14:09:31','2022-05-18 14:09:31','','price-pattern2.png','','inherit','open','closed','','price-pattern2-png','','','2022-05-18 14:09:31','2022-05-18 14:09:31','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/price-pattern2.png',0,'attachment','image/png',0),(546,1,'2022-05-18 14:27:54','2022-05-18 14:27:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 14:27:54','2022-05-18 14:27:54','',415,'https://demoweblinks.in/aahan/?p=546',0,'revision','',0),(547,1,'2022-05-18 14:27:54','2022-05-18 14:27:54','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 14:27:54','2022-05-18 14:27:54','',415,'https://demoweblinks.in/aahan/?p=547',0,'revision','',0),(548,1,'2022-05-18 14:27:55','2022-05-18 14:27:55','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Milestone</h2>		\n                                                                            <h3>Establishment as an NGO Aahan Tribal Development Foundation</h3>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2013 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Mentoring Walk</h3>\n                                                                  <p>Mentoring Walk, where we brought tribal girls and matched them with their mentors. It was our first partnership program with Vital Voices and DFID. It was a unique program for the stakeholders and led to several such walks in the coming years.</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2014 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Mentorship Programs</h3>\n                                                                  <p>Launched mentorship program for emerging change-makers, who were coming from all walks of life; students to Panchayat leaders.\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2016 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Formation of Aahan Bravehearts</h3>\n                                                                  <p>National level football player Rupanti Munda represented India in Homeless Soccer World Cup in Oslo, Norwa\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2017 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Young Ambassadors Program</h3>\n                                                                  <p>Launch of Young Ambassadors Program.\n&amp; Joint Art Exhibition of Aahan Fellow Arti Munda and Aahan Ambassador Jannat Arora in Delhi.\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2018 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Name changed to Aahan Foundation for Social Change.</h3>\n                                                                  <p>Name changed to Aahan Foundation for Social Change from Aahan Tribal Development Foundation.\nStarted a centre in Jaratoli village of Jonha panchayat to provide foundational learning, digital literacy, trauma healing etc.</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2019 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Covid Relief Program</h3>\n                                                                  <p>Covid 19 relief programs in the tribal regions.\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2020 </h4>\n                        <!-- .single-timeline .media END -->\n                                                                            <h3>Affiliation of two football clubs with AIFF</h3>\n                                                                  <p>Affiliation of two football clubs with All India Football Federation (AIFF) comprising players who are survivors of GBV\n</p>\n                                <!-- .timeline-content END -->\n                            <!-- .timeline-item .media END -->\n                    <h4>\n                                        2021 </h4>\n                        <!-- .single-timeline .media END -->\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC01YjNiNTk0MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTViM2I1OTQwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-5b3b5940\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNWIzYjU5NDAifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Milestones','','inherit','closed','closed','','415-revision-v1','','','2022-05-18 14:27:55','2022-05-18 14:27:55','',415,'https://demoweblinks.in/aahan/?p=548',0,'revision','',0),(549,1,'2022-05-19 04:07:50','2022-05-19 04:07:50','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-19 04:07:50','2022-05-19 04:07:50','',15,'https://demoweblinks.in/aahan/?p=549',0,'revision','',0),(550,1,'2022-05-19 04:07:50','2022-05-19 04:07:50','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-19 04:07:50','2022-05-19 04:07:50','',15,'https://demoweblinks.in/aahan/?p=550',0,'revision','',0),(551,1,'2022-05-19 04:07:51','2022-05-19 04:07:51','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-19 04:07:51','2022-05-19 04:07:51','',15,'https://demoweblinks.in/aahan/?p=551',0,'revision','',0),(552,1,'2022-05-19 04:08:22','2022-05-19 04:08:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-19 04:08:22','2022-05-19 04:08:22','',15,'https://demoweblinks.in/aahan/?p=552',0,'revision','',0),(553,1,'2022-05-19 04:08:22','2022-05-19 04:08:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-19 04:08:22','2022-05-19 04:08:22','',15,'https://demoweblinks.in/aahan/?p=553',0,'revision','',0),(554,1,'2022-05-19 04:08:22','2022-05-19 04:08:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>About us</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"2000\" height=\"1333\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles.jpg 2000w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1024x682.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/group-of-volunteer-forming-huddles-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img width=\"1333\" height=\"2000\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg 1333w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-200x300.jpg 200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-682x1024.jpg 682w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-768x1152.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles-1024x1536.jpg 1024w\" sizes=\"(max-width: 1333px) 100vw, 1333px\" />															\n                <a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&#038;mute=0&#038;autoplay=0&#038;loop=no&#038;controls=0&#038;start=0&#038;end=\">\n																										                </a>\n			<h2>‘Aahan’ means ‘New Dawn’ in Hindi</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking.</p>		\n					<ul>\n							<li>\n										Support people in extreme need\n									</li>\n								<li>\n										Largest global crowdfunding community\n									</li>\n								<li>\n										Make the world a better place\n									</li>\n								<li>\n										Share your love for community\n									</li>\n						</ul>\n												0\n					<h3>Successfull Campaigns</h3>							\n			<h5>Our Mission</h5>		\n			<h2>Empowerment – a process of change</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Clean Water                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Healthy Food                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Medical Help                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Proper Education                </h3>\n                                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod tempor </p>\n			<h2>Our Purpose</h2>		\n			<h3>To see every girl child equipped to live free from exploitation, discrimination and inequality</h3>		\n            <h2>WHY</h2>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p>To see every child lead an empowered life in a world free from exploitation, discrimination and inequality</p>		\n            <h2>HOW</h2>\n		<p>By following in inside-out approach for breaking the intergenerational cycle of trafficking and child marriage</p>		\n            <h2>WHAT</h2>\n		<p>We empower girls to be change leaders</p>		\n			<h2>Where we work</h2>		\n															<img width=\"580\" height=\"433\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-768x573.png 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2-300x224.png 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/2.png 790w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1hY2ZkZTgwIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWFjZmRlODAifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-acfde80\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYWNmZGU4MCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','About us','','inherit','closed','closed','','15-revision-v1','','','2022-05-19 04:08:22','2022-05-19 04:08:22','',15,'https://demoweblinks.in/aahan/?p=554',0,'revision','',0),(555,1,'2022-05-19 04:39:31','2022-05-19 04:39:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d3340050d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d3340050d\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d3340050d\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d3340050d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d3340050d\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d3340050d\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Click to read our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','publish','closed','closed','','our-program-awareness','','','2022-05-19 05:18:44','2022-05-19 05:18:44','',17,'https://demoweblinks.in/aahan/?page_id=555',0,'page','',0),(556,1,'2022-05-19 04:39:31','2022-05-19 04:39:31','','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 04:39:31','2022-05-19 04:39:31','',555,'https://demoweblinks.in/aahan/?p=556',0,'revision','',0),(557,1,'2022-05-19 04:39:56','2022-05-19 04:39:56','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Education\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285d935ef660\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d935ef660\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d935ef660\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285d93600f07\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d93600f07\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d93600f07\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1mZDdjNmNkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1mZDdjNmNkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWZkN2M2Y2QifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZmQ3YzZjZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWZkN2M2Y2QifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZmQ3YzZjZCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Education','','publish','closed','closed','','our-program-education','','','2022-05-19 05:44:22','2022-05-19 05:44:22','',17,'https://demoweblinks.in/aahan/?page_id=557',1,'page','',0),(558,1,'2022-05-19 04:39:56','2022-05-19 04:39:56','','Our Program: Education','','inherit','closed','closed','','557-revision-v1','','','2022-05-19 04:39:56','2022-05-19 04:39:56','',557,'https://demoweblinks.in/aahan/?p=558',0,'revision','',0),(559,1,'2022-05-19 04:40:22','2022-05-19 04:40:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285dec11483a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285dec11483a\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285dec11483a\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','publish','closed','closed','','our-program-sports-for-development','','','2022-05-19 06:08:01','2022-05-19 06:08:01','',17,'https://demoweblinks.in/aahan/?page_id=559',2,'page','',0),(560,1,'2022-05-19 04:40:22','2022-05-19 04:40:22','','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 04:40:22','2022-05-19 04:40:22','',559,'https://demoweblinks.in/aahan/?p=560',0,'revision','',0),(561,1,'2022-05-19 04:40:46','2022-05-19 04:40:46','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Art for Development\n</h2>		\n			<h4>Art For Development : Shining a light through art\n</h4>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"837\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Art has a language of its own. It has the ability to shine a light for girls in marginalized communities. We incorporate art in our programs to create change. Art inspires creativity, gives hope, empowers the individual to express themselves.</p>		\n			<h2>\n						Art for awareness\n				</h2>				\n					<p>We identify and encourage talented young artists who know traditional art forms to sensitize the community about the ill effects of certain superstitions or practices such as child marriage through their art.</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Art for Livelihood\n				</h2>				\n					<p>Talented young artists in the village are provided training and resources to create paintings and other handcrafted products. Aahan helps them market their paintings and products in cities and generate income. This can help prevent migrating to cities and working as domestic help. Art classes have become a great unifying factor between the girls from different villages.</p>\n		<p>Aahan artists working on reviving the dying wall art of Sohrai are amongst a handful of artists from Jharkhand who create this kind of art on paper.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0xMWFjNzkyIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0xMWFjNzkyIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTExYWM3OTIifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMTFhYzc5MiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTExYWM3OTIifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMTFhYzc5MiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Art for Development','','publish','closed','closed','','our-program-art-for-development','','','2022-05-19 06:17:01','2022-05-19 06:17:01','',17,'https://demoweblinks.in/aahan/?page_id=561',3,'page','',0),(562,1,'2022-05-19 04:40:46','2022-05-19 04:40:46','','Our Program: Art for Development','','inherit','closed','closed','','561-revision-v1','','','2022-05-19 04:40:46','2022-05-19 04:40:46','',561,'https://demoweblinks.in/aahan/?p=562',0,'revision','',0),(563,1,'2022-05-19 04:41:07','2022-05-19 04:41:07','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Capacity Building\n</h2>		\n			<h2>Capacity Development\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"384\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-1024x678.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-1024x678.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-300x199.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-768x509.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash.jpg 1200w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Aahan’s Capacity Building program develops and strengthens skills and abilities needed to survive, adapt and thrive in a fast-changing world.</p><p>Because of the prevailing regional, social and gender discrepancies, girls of marginalised tribal communities facing Gender-Based Violence live in very challenging scenarios. With little or no access to education, the girls lack a sense of identity or purpose, are unable to explore their inherent talents and have no awareness of their human rights.T.</p><p>The girls who get enrolled in school receive the most basic of education which does not develop any modern-day skills. The girls are cut off from the mainstream due to the language barrier, inability to use digital tools like email, and outdated teaching curriculum</p>		\n                        <a href=\"#collapse-bc228306285ebc3bc5b8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285ebc3bc5b8\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285ebc3bc5b8\">\n                            We develop our capacity development programs through:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Research and analysis of the scenarios faced by the girls in the village</li><li>Community involvement through our Urjaa Fellowship program – these are the girls who have completed capacity building programs themselves</li><li>Collaborations with academic, corporate, experts and other non-governmental entities</li></ul><ul><li> </li></ul>                        \n                <!-- .elementskit-card END -->\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Our Capacity Development program is multi-faceted.\n				</h2>				\n					<p>It includes higher studies, knowledge of the English language and digital literacy. An essential ingredient in our capacity-building is the transformation of the girls internally. Counselling, talks and workshops encourage girls to become independent in selecting the best path for themselves. Through programs like Urjaa Fellows, we create local change leaders who help other girls in their village, serve as role models and a connecting link between Modern and Rural India.</p>\n                        <a href=\"#collapse-bc228306285ebc3c17fb\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285ebc3c17fb\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285ebc3c17fb\">\n                            Our approach to capacity development includes :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Creating safe spaces for girls to express themselves</li><li>Using sports and arts as a means of expression</li><li>Building leadership skills such as communications, public speaking and team work</li><li>Exploring and encouraging inherent talent</li><li>Building networks for girls that build bonds and support for each other</li><li>Participation in projects in cities and even outside India</li><li>Providing platforms for sharing ideas and sharing experiences.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<h3 id=\"aahan-s-capacity-development-program-enables-the-girls-to-grow-internally-building-capabilities-for-livelihood-and-enabling-financial-and-social-freedom\">Aahan’s Capacity Development Program enables the girls to grow internally, building capabilities for livelihood , and enabling financial and social freedom.</h3>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','publish','closed','closed','','our-program-capacity-building','','','2022-05-19 07:03:31','2022-05-19 07:03:31','',17,'https://demoweblinks.in/aahan/?page_id=563',4,'page','',0),(564,1,'2022-05-19 04:41:07','2022-05-19 04:41:07','','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 04:41:07','2022-05-19 04:41:07','',563,'https://demoweblinks.in/aahan/?p=564',0,'revision','',0),(565,1,'2022-05-19 04:42:41','2022-05-19 04:42:41',' ','','','publish','closed','closed','','565','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',17,'https://demoweblinks.in/aahan/?p=565',10,'nav_menu_item','',0),(566,1,'2022-05-19 04:42:41','2022-05-19 04:42:41',' ','','','publish','closed','closed','','566','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',17,'https://demoweblinks.in/aahan/?p=566',9,'nav_menu_item','',0),(567,1,'2022-05-19 04:42:41','2022-05-19 04:42:41',' ','','','publish','closed','closed','','567','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',17,'https://demoweblinks.in/aahan/?p=567',8,'nav_menu_item','',0),(568,1,'2022-05-19 04:42:41','2022-05-19 04:42:41',' ','','','publish','closed','closed','','568','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',17,'https://demoweblinks.in/aahan/?p=568',7,'nav_menu_item','',0),(569,1,'2022-05-19 04:42:41','2022-05-19 04:42:41',' ','','','publish','closed','closed','','569','','','2022-05-19 04:42:41','2022-05-19 04:42:41','',17,'https://demoweblinks.in/aahan/?p=569',6,'nav_menu_item','',0),(571,1,'2022-05-19 04:51:37','2022-05-19 04:51:37','','placeholder-169.png','','inherit','open','closed','','placeholder-169-png','','','2022-05-19 04:51:37','2022-05-19 04:51:37','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/placeholder-169.png',0,'attachment','image/png',0),(572,1,'2022-05-19 05:08:55','2022-05-19 05:08:55','','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:08:55','2022-05-19 05:08:55','',555,'https://demoweblinks.in/aahan/?p=572',0,'revision','',0),(573,1,'2022-05-19 05:08:55','2022-05-19 05:08:55','','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:08:55','2022-05-19 05:08:55','',555,'https://demoweblinks.in/aahan/?p=573',0,'revision','',0),(574,1,'2022-05-19 05:08:55','2022-05-19 05:08:55','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d0e75764a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d0e75764a\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d0e75764a\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d0e75764a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d0e75764a\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d0e75764a\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:08:55','2022-05-19 05:08:55','',555,'https://demoweblinks.in/aahan/?p=574',0,'revision','',0),(575,1,'2022-05-19 05:17:25','2022-05-19 05:17:25','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d0e75764a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d0e75764a\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d0e75764a\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d0e75764a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d0e75764a\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d0e75764a\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:17:25','2022-05-19 05:17:25','',555,'https://demoweblinks.in/aahan/?p=575',0,'revision','',0),(576,1,'2022-05-19 05:17:25','2022-05-19 05:17:25','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d0e75764a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d0e75764a\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d0e75764a\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d0e75764a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d0e75764a\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d0e75764a\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Our success stories\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:17:25','2022-05-19 05:17:25','',555,'https://demoweblinks.in/aahan/?p=576',0,'revision','',0),(577,1,'2022-05-19 05:17:25','2022-05-19 05:17:25','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d2e54c952\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d2e54c952\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d2e54c952\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d2e54c952\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d2e54c952\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d2e54c952\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Click to read our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:17:25','2022-05-19 05:17:25','',555,'https://demoweblinks.in/aahan/?p=577',0,'revision','',0),(578,1,'2022-05-19 05:18:43','2022-05-19 05:18:43','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d2e54c952\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d2e54c952\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d2e54c952\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d2e54c952\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d2e54c952\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d2e54c952\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Click to read our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:18:43','2022-05-19 05:18:43','',555,'https://demoweblinks.in/aahan/?p=578',0,'revision','',0),(579,1,'2022-05-19 05:18:43','2022-05-19 05:18:43','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d2e54c952\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d2e54c952\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d2e54c952\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d2e54c952\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d2e54c952\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d2e54c952\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Click to read our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:18:43','2022-05-19 05:18:43','',555,'https://demoweblinks.in/aahan/?p=579',0,'revision','',0),(580,1,'2022-05-19 05:18:44','2022-05-19 05:18:44','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Awareness</h2>		\n			<h2>Aahan Program Awareness: Collective action through Awareness, Community and Network Building</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Awareness is the first ray of light. Collective consciousness is a vital driver for the joint action that fundamentally addresses critical issues of gender discrimination.</p><p>Women and girls of marginalised communities in rural Jharkhand often lack the critical consciousness of their inequalities, sense of self, and rights. Awareness is the first step to transformation and growth. An internal change that creates a spark to exercise agency. Girls, once aware, become change leaders -spreading the light, inspiring and leading a social change with empathy.</p><p>Our experience has shown that empowerment initiatives are intensified and produce 5X better results when gender-based violence issues are raised by girls from their community- girls like them who face similar challenges.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Community Participation\n				</h2>				\n					<p>In tribal areas, Community Participation is one of the significant aspects of addressing gender-based discrimination. Creating and sustaining change is only possible by addressing discrimination against girls at a community level. This discussion has to include parents, relatives, village leaders, and other key people.</p>\n		<p>Aahan’s programs establish a strong linkage with the community and develop a sense of community ownership. This ensures greater community participation, positive attitudinal change and capacity building.</p>		\n                        <a href=\"#collapse-bc228306285d3340050d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d3340050d\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d3340050d\">\n                            Aahan awareness programme focuses on :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Awareness of the need and importance of education, hygiene and healthcare</li><li>Prevention of child marriage, sexual abuse, human trafficking, hygiene and healthcare.</li></ul>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-8417e716285d3340050d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8417e716285d3340050d\" aria-expanded=\"false\" aria-controls=\"Collapse-8417e716285d3340050d\">\n                            Some of our community awareness activities:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>Creating awareness about child rights, safety and child labour<br />• Awareness about laws related to trafficking of children, under-age marriages as well as child and women rights in general<br />• Gender awareness workshops with self-help groups, in schools and at the community level<br />• Door to door awareness campaigns about trafficking, child marriage, child safety and reducing migration of kids.<br />• Awareness workshop for parents, creation of male champions and support groups.<br />• Conducting workshop to explain the child right and basic related laws in local language<br />• Running campaigns at village level against girl trafficking and Child Marriage</p>                        \n                <!-- .elementskit-card END -->\n		<p>Our community awareness programmes have increased school attendance, enrolment in elementary school, reduction in the incidents of trafficking and child marriage and better emotional and mental health of girls.</p>		\n			<a href=\"\" role=\"button\">\n						Click to read our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC00MTAwMjkwZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTQxMDAyOTBkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-4100290d\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtNDEwMDI5MGQifQ%3D%3D\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Awareness','','inherit','closed','closed','','555-revision-v1','','','2022-05-19 05:18:44','2022-05-19 05:18:44','',555,'https://demoweblinks.in/aahan/?p=580',0,'revision','',0),(582,1,'2022-05-19 05:44:21','2022-05-19 05:44:21','','Our Program: Education','','inherit','closed','closed','','557-revision-v1','','','2022-05-19 05:44:21','2022-05-19 05:44:21','',557,'https://demoweblinks.in/aahan/?p=582',0,'revision','',0),(583,1,'2022-05-19 05:44:21','2022-05-19 05:44:21','','Our Program: Education','','inherit','closed','closed','','557-revision-v1','','','2022-05-19 05:44:21','2022-05-19 05:44:21','',557,'https://demoweblinks.in/aahan/?p=583',0,'revision','',0),(584,1,'2022-05-19 05:44:22','2022-05-19 05:44:22','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Education\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285d935ef660\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d935ef660\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d935ef660\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285d93600f07\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285d93600f07\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285d93600f07\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1mZDdjNmNkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1mZDdjNmNkIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWZkN2M2Y2QifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZmQ3YzZjZCJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWZkN2M2Y2QifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-fd7c6cd\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZmQ3YzZjZCJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Education','','inherit','closed','closed','','557-revision-v1','','','2022-05-19 05:44:22','2022-05-19 05:44:22','',557,'https://demoweblinks.in/aahan/?p=584',0,'revision','',0),(586,1,'2022-05-19 06:02:19','2022-05-19 06:02:19','','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:02:19','2022-05-19 06:02:19','',559,'https://demoweblinks.in/aahan/?p=586',0,'revision','',0),(587,1,'2022-05-19 06:02:19','2022-05-19 06:02:19','','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:02:19','2022-05-19 06:02:19','',559,'https://demoweblinks.in/aahan/?p=587',0,'revision','',0),(588,1,'2022-05-19 06:02:19','2022-05-19 06:02:19','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285dd6b8b79f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285dd6b8b79f\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285dd6b8b79f\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:02:19','2022-05-19 06:02:19','',559,'https://demoweblinks.in/aahan/?p=588',0,'revision','',0),(590,1,'2022-05-19 06:06:47','2022-05-19 06:06:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285dd6b8b79f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285dd6b8b79f\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285dd6b8b79f\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:06:47','2022-05-19 06:06:47','',559,'https://demoweblinks.in/aahan/?p=590',0,'revision','',0),(591,1,'2022-05-19 06:06:47','2022-05-19 06:06:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285dd6b8b79f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285dd6b8b79f\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285dd6b8b79f\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:06:47','2022-05-19 06:06:47','',559,'https://demoweblinks.in/aahan/?p=591',0,'revision','',0),(592,1,'2022-05-19 06:06:47','2022-05-19 06:06:47','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285de7770965\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285de7770965\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285de7770965\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:06:47','2022-05-19 06:06:47','',559,'https://demoweblinks.in/aahan/?p=592',0,'revision','',0),(593,1,'2022-05-19 06:08:00','2022-05-19 06:08:00','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285de7770965\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285de7770965\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285de7770965\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:08:00','2022-05-19 06:08:00','',559,'https://demoweblinks.in/aahan/?p=593',0,'revision','',0),(594,1,'2022-05-19 06:08:00','2022-05-19 06:08:00','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285de7770965\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285de7770965\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285de7770965\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:08:00','2022-05-19 06:08:00','',559,'https://demoweblinks.in/aahan/?p=594',0,'revision','',0),(595,1,'2022-05-19 06:08:01','2022-05-19 06:08:01','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Sports for Development\n</h2>		\n			<h2>Our Sports Programs seek to empower girls through sports.</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"434\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1024x767.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-300x225.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-768x576.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1536x1151.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash-1200x899.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/ivan-bandura-532042-unsplash.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Sports training is a critical component of Aahan’s intervention for girl empowerment. Our sports training program has successfully trained girls in sports and built a strong community of girls who are united by their passion for playing.</p><p>Through sports, especially team sports such as Football, girls internalise the importance of physical health, get a constructive outlet to vent out feelings, and cultivate a will to win. Furthermore, sports gives the tribal girls a greater understanding of their body and encourage expression through the body. These critical life skills and learning is at the core of our programme.</p>		\n                        <a href=\"#collapse-bc228306285dec11483a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285dec11483a\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285dec11483a\">\n                            Some of our Sports Activities\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Regular communication with parents by coaches to help maintain girls’ participation</li><li>Trainer led Chess classes</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Conducting Sports Day as part of our ongoing exercise to use sports for mental and overall well-being as well as for building a strong community of girls</li><li>Training girls in long-distance running.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><p>Aahan helps girls access coaches and sports kits and equips them to compete at a local, state, and international level.</p>		\n			<h2>\n						Football \n				</h2>				\n					<p>Football is a great team sport. Playing in a team, the girls develop a bond, belonging and a purpose. It helps convince the tribal families not to send their daughters to work at brick-kilns or the city. It has saved many girls from getting married before the age of 18.</p>\n		<p>We currently train around 150 girls from various age groups in Doti and Jonha in Ranchi.</p><p>Aahan Foundation, Domaro, Laterhar’ and ‘Girls for Girls, Jonha, Ranchi’ -clubs of the Aahan Foundation are registered with the All India Football Federation.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1kOWE2Nzg1In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWQ5YTY3ODUifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-d9a6785\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtZDlhNjc4NSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Sports for Development','','inherit','closed','closed','','559-revision-v1','','','2022-05-19 06:08:01','2022-05-19 06:08:01','',559,'https://demoweblinks.in/aahan/?p=595',0,'revision','',0),(597,1,'2022-05-19 06:17:01','2022-05-19 06:17:01','','Our Program: Art for Development','','inherit','closed','closed','','561-revision-v1','','','2022-05-19 06:17:01','2022-05-19 06:17:01','',561,'https://demoweblinks.in/aahan/?p=597',0,'revision','',0),(598,1,'2022-05-19 06:17:01','2022-05-19 06:17:01','','Our Program: Art for Development','','inherit','closed','closed','','561-revision-v1','','','2022-05-19 06:17:01','2022-05-19 06:17:01','',561,'https://demoweblinks.in/aahan/?p=598',0,'revision','',0),(599,1,'2022-05-19 06:17:01','2022-05-19 06:17:01','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Art for Development\n</h2>		\n			<h4>Art For Development : Shining a light through art\n</h4>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"837\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-1065x1536.jpg 1065w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-208x300.jpg 208w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-710x1024.jpg 710w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P-768x1107.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg 1284w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Art has a language of its own. It has the ability to shine a light for girls in marginalized communities. We incorporate art in our programs to create change. Art inspires creativity, gives hope, empowers the individual to express themselves.</p>		\n			<h2>\n						Art for awareness\n				</h2>				\n					<p>We identify and encourage talented young artists who know traditional art forms to sensitize the community about the ill effects of certain superstitions or practices such as child marriage through their art.</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Art for Livelihood\n				</h2>				\n					<p>Talented young artists in the village are provided training and resources to create paintings and other handcrafted products. Aahan helps them market their paintings and products in cities and generate income. This can help prevent migrating to cities and working as domestic help. Art classes have become a great unifying factor between the girls from different villages.</p>\n		<p>Aahan artists working on reviving the dying wall art of Sohrai are amongst a handful of artists from Jharkhand who create this kind of art on paper.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0xMWFjNzkyIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC0xMWFjNzkyIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLTExYWM3OTIifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMTFhYzc5MiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLTExYWM3OTIifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-11ac792\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtMTFhYzc5MiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Art for Development','','inherit','closed','closed','','561-revision-v1','','','2022-05-19 06:17:01','2022-05-19 06:17:01','',561,'https://demoweblinks.in/aahan/?p=599',0,'revision','',0),(601,1,'2022-05-19 06:40:18','2022-05-19 06:40:18','','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 06:40:18','2022-05-19 06:40:18','',563,'https://demoweblinks.in/aahan/?p=601',0,'revision','',0),(602,1,'2022-05-19 06:40:18','2022-05-19 06:40:18','','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 06:40:18','2022-05-19 06:40:18','',563,'https://demoweblinks.in/aahan/?p=602',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (603,1,'2022-05-19 06:40:19','2022-05-19 06:40:19','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Education\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285e6530f86b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e6530f86b\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e6530f86b\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285e65314b47\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65314b47\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65314b47\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 06:40:19','2022-05-19 06:40:19','',563,'https://demoweblinks.in/aahan/?p=603',0,'revision','',0),(604,1,'2022-05-19 06:40:30','2022-05-19 06:40:30','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Education\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285e6530f86b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e6530f86b\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e6530f86b\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285e65314b47\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65314b47\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65314b47\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 06:40:30','2022-05-19 06:40:30','',563,'https://demoweblinks.in/aahan/?p=604',0,'revision','',0),(605,1,'2022-05-19 06:40:30','2022-05-19 06:40:30','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Education\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285e6530f86b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e6530f86b\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e6530f86b\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285e65314b47\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65314b47\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65314b47\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 06:40:30','2022-05-19 06:40:30','',563,'https://demoweblinks.in/aahan/?p=605',0,'revision','',0),(606,1,'2022-05-19 06:40:31','2022-05-19 06:40:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Capacity Building\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285e65ee4f6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65ee4f6d\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65ee4f6d\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285e65ee9f58\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65ee9f58\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65ee9f58\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 06:40:31','2022-05-19 06:40:31','',563,'https://demoweblinks.in/aahan/?p=606',0,'revision','',0),(607,1,'2022-05-19 07:03:31','2022-05-19 07:03:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Capacity Building\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285e65ee4f6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65ee4f6d\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65ee4f6d\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285e65ee9f58\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65ee9f58\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65ee9f58\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 07:03:31','2022-05-19 07:03:31','',563,'https://demoweblinks.in/aahan/?p=607',0,'revision','',0),(608,1,'2022-05-19 07:03:31','2022-05-19 07:03:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Capacity Building\n</h2>		\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285e65ee4f6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65ee4f6d\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65ee4f6d\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285e65ee9f58\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285e65ee9f58\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285e65ee9f58\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 07:03:31','2022-05-19 07:03:31','',563,'https://demoweblinks.in/aahan/?p=608',0,'revision','',0),(609,1,'2022-05-19 07:03:31','2022-05-19 07:03:31','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Our Program: Capacity Building\n</h2>		\n			<h2>Capacity Development\n</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"384\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-1024x678.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-1024x678.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-300x199.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash-768x509.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/debby-hudson-1056837-unsplash.jpg 1200w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p>Aahan’s Capacity Building program develops and strengthens skills and abilities needed to survive, adapt and thrive in a fast-changing world.</p><p>Because of the prevailing regional, social and gender discrepancies, girls of marginalised tribal communities facing Gender-Based Violence live in very challenging scenarios. With little or no access to education, the girls lack a sense of identity or purpose, are unable to explore their inherent talents and have no awareness of their human rights.T.</p><p>The girls who get enrolled in school receive the most basic of education which does not develop any modern-day skills. The girls are cut off from the mainstream due to the language barrier, inability to use digital tools like email, and outdated teaching curriculum</p>		\n                        <a href=\"#collapse-bc228306285ebc3bc5b8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285ebc3bc5b8\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285ebc3bc5b8\">\n                            We develop our capacity development programs through:\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Research and analysis of the scenarios faced by the girls in the village</li><li>Community involvement through our Urjaa Fellowship program – these are the girls who have completed capacity building programs themselves</li><li>Collaborations with academic, corporate, experts and other non-governmental entities</li></ul><ul><li> </li></ul>                        \n                <!-- .elementskit-card END -->\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n			<h2>\n						Our Capacity Development program is multi-faceted.\n				</h2>				\n					<p>It includes higher studies, knowledge of the English language and digital literacy. An essential ingredient in our capacity-building is the transformation of the girls internally. Counselling, talks and workshops encourage girls to become independent in selecting the best path for themselves. Through programs like Urjaa Fellows, we create local change leaders who help other girls in their village, serve as role models and a connecting link between Modern and Rural India.</p>\n                        <a href=\"#collapse-bc228306285ebc3c17fb\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285ebc3c17fb\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285ebc3c17fb\">\n                            Our approach to capacity development includes :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Creating safe spaces for girls to express themselves</li><li>Using sports and arts as a means of expression</li><li>Building leadership skills such as communications, public speaking and team work</li><li>Exploring and encouraging inherent talent</li><li>Building networks for girls that build bonds and support for each other</li><li>Participation in projects in cities and even outside India</li><li>Providing platforms for sharing ideas and sharing experiences.</li></ul>                        \n                <!-- .elementskit-card END -->\n		<h3 id=\"aahan-s-capacity-development-program-enables-the-girls-to-grow-internally-building-capabilities-for-livelihood-and-enabling-financial-and-social-freedom\">Aahan’s Capacity Development Program enables the girls to grow internally, building capabilities for livelihood , and enabling financial and social freedom.</h3>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jYzU4Mjk2In0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWNjNTgyOTYifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-cc58296\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtY2M1ODI5NiJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Our Program: Capacity Building','','inherit','closed','closed','','563-revision-v1','','','2022-05-19 07:03:31','2022-05-19 07:03:31','',563,'https://demoweblinks.in/aahan/?p=609',0,'revision','',0),(610,1,'2022-05-19 07:05:14','2022-05-19 07:05:14','<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>\'Aahan\" Means \'New Dawn\'</h3>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n			<a href=\"#\" role=\"button\">\n						Donate\n					</a>\n			<h2>Contact us</h2>		\n			<h2>Contact</h2>		\n					<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Contact\n									</li>\n						</ul>\n			<h5>Contact Us</h5>		\n			<h2>Get In Touch</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\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.6.5 - 27-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Jalan%20Sunset%20Road%20Kuta&#038;t=m&#038;z=16&#038;output=embed&#038;iwloc=near\"\n					title=\"Jalan Sunset Road Kuta\"\n					aria-label=\"Jalan Sunset Road Kuta\"\n			></iframe>\n			<h2>Education and Training 21st Century skills</h2>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"580\" height=\"387\" src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1024x683.jpg 1024w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-300x200.jpg 300w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-768x512.jpg 768w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1536x1024.jpg 1536w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2-1200x800.jpg 1200w, https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg 1920w\" sizes=\"(max-width: 580px) 100vw, 580px\" />															\n		<p><em>Girls in marginalised tribal communities in rural India are at risk of premature school leaving, sexual abuse, early child marriage, early childbearing, and other harmful gender norms.<br /></em></p><p><em>The overall goal of the Aahan Foundation is to improve school enrolment and retention, increase progression to secondary school by bolstering girls’ learning outcomes, furthering social connections, improving critical thinking skills, increasing agency, fostering community norms supportive of girls’ schooling and equipping the girls with vital 21st-century skills</em>.</p><p>We believe knowledge is fundamental for girls’ to understand their choices as a right. Education is the tool that gives them access and the ability to exercise their voice and make choices. Skills are a gateway to economic participation. Empowerment through education and livelihood is fundamental to girls controlling their lives and exerting influence for a gender-sensitive society at the grassroots. Empowered and educated girls create a strong foundation for a gender-sensitive society, bringing long-term sustainable changes at the grassroots level.</p>		\n                        <a href=\"#collapse-bc228306285eceb32d9c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285eceb32d9c\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285eceb32d9c\">\n                            Our adaptive curriculum and evaluation process is based on parameters in-line with our CREAT model and not on rote learning.\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <p>C: Critical thinking and problem-solving skills<br />R: Responsibility<br />E: Emotional Intelligence<br />A: Awareness and Assertiveness<br />T: Teamwork<br />E: Effective Communication</p>                        \n                <!-- .elementskit-card END -->\n		<p>Besides using the pedagogy of <strong>Cooperative learning and Gradual Release of Responsibility Mode</strong>l to strengthen the foundational learning of girls, we collaborate with organisations and Not For Profits for skill development in areas like software engineering.</p><ul id=\"swiper-wrapper-8574be2bea42273b\" aria-live=\"off\"><li role=\"group\" data-swiper-slide-index=\"3\" aria-hidden=\"true\" aria-label=\"1 / 6\"> </li></ul>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" alt=\"Causes-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/background-2.jpg\" alt=\"background-2.jpg\" /></figure><figure><img src=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/african-american-girl-hands-holding-a-marble-made-heart.jpg\" alt=\"african-american-girl-hands-holding-a-marble-made-heart.jpg\" /></figure>			\n												Previous\n												Next\n		<p>We leverage our seven years of working with the local people, collective understanding of the social nuances, network of senior trainers and academicians, technology, and Urjaa Fellows to deliver the programs at ground level effectively. Last year, all girls who studied in our centre passed their Class 10th and 12th examinations with flying colours.</p><p>Furthermore, once the girls start getting formal training and jobs, other girls’ parents become more open to enrolling their daughters in such programs rather than sending them to work in cities as maids or marrying them off before they turn 18.</p>		\n                        <a href=\"#collapse-bc228306285eceb38abb\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-bc228306285eceb38abb\" aria-expanded=\"true\" aria-controls=\"Collapse-bc228306285eceb38abb\">\n                            Our activities include :\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            <ul><li>Foundational course</li><li>Command over English language</li><li>Digital skills: usage of MS office, Google workspace and applications etc</li><li>Awareness on their fundamental rights and issues faced by the girls.</li><li>Life Skills</li></ul>                        \n                <!-- .elementskit-card END -->\n		<p>Our teams and Urja Fellows are trained to provide educational support to girls at the primary level or to help them meet the prerequisites of open school registration.</p>		\n			<a href=\"\" role=\"button\">\n						Read some of our stories of impact\n					</a>\n			<h2>ABOUT US</h2>		\n		<p>Aahan Foundation is a Not for Profit organisation working towards empowering girls from marginalised communities at risk of gender-based violence, including child marriage, sexual abuse and human trafficking</p>		\n			<h2>ALL CONTACTS</h2>		\n					<ul>\n							<li>\n										Location address\n									</li>\n								<li>\n										Office number\n									</li>\n								<li>\n										info@aahanfoundation.org\n									</li>\n						</ul>\n			<h2>Subscribe To Us</h2>		\n		<p>Lorem ipsum dolor sit </p>		\n			<h2>Gallery</h2>		\n			<style>/*! elementor-pro - v3.6.4 - 15-03-2022 */\n.elementor-gallery__container{min-height:1px}.elementor-gallery-item{position:relative;overflow:hidden;display:block;text-decoration:none;border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius)}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;width:100%;position:absolute;top:0;left:0}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);-webkit-transition-duration:var(--overlay-transition-duration);-o-transition-duration:var(--overlay-transition-duration);transition-duration:var(--overlay-transition-duration);-webkit-transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;transition-property:mix-blend-mode,opacity,background-color,-webkit-transform;-o-transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color;transition-property:mix-blend-mode,transform,opacity,background-color,-webkit-transform}.elementor-gallery-item__image.e-gallery-image{-webkit-transition-duration:var(--image-transition-duration);-o-transition-duration:var(--image-transition-duration);transition-duration:var(--image-transition-duration);-webkit-transition-property:-webkit-filter,-webkit-transform;transition-property:-webkit-filter,-webkit-transform;-o-transition-property:filter,transform;transition-property:filter,transform;transition-property:filter,transform,-webkit-filter,-webkit-transform}.elementor-gallery-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:var(--content-justify-content,center);-ms-flex-pack:var(--content-justify-content,center);justify-content:var(--content-justify-content,center);-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:var(--content-text-align);padding:var(--content-padding)}.elementor-gallery-item__content>div{-webkit-transition-duration:var(--content-transition-duration);-o-transition-duration:var(--content-transition-duration);transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){-webkit-transition-delay:calc((var(--content-transition-delay) / 3));-o-transition-delay:calc((var(--content-transition-delay) / 3));transition-delay:calc((var(--content-transition-delay) / 3))}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 2);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 2);transition-delay:calc((var(--content-transition-delay) / 3) * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){-webkit-transition-delay:calc((var(--content-transition-delay) / 3) * 3);-o-transition-delay:calc((var(--content-transition-delay) / 3) * 3);transition-delay:calc((var(--content-transition-delay) / 3) * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--titles-container-justify-content,center);-ms-flex-pack:var(--titles-container-justify-content,center);justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:var(--galleries-pointer-border-width);border-right-width:0;border-top-width:0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-left-width:0;border-bottom-width:0;border-right-width:var(--galleries-pointer-border-width);border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-left-width:var(--galleries-pointer-border-width);border-bottom-width:0;border-right-width:0;border-top-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-left-width:0;border-bottom-width:var(--galleries-pointer-border-width);border-right-width:var(--galleries-pointer-border-width);border-top-width:0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;cursor:pointer;color:#6d7882;font-weight:500;position:relative;padding:7px 14px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-right:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}</style>		\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/causes.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c6890d1\" data-elementor-lightbox-title=\"causes.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvY2F1c2VzLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jNjg5MGQxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/aubergine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c6890d1\" data-elementor-lightbox-title=\"aubergine.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzYsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvYXViZXJnaW5lLmpwZyIsInNsaWRlc2hvdyI6ImFsbC1jNjg5MGQxIn0%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/happy-kid-W97QA6P.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c6890d1\" data-elementor-lightbox-title=\"happy-kid-W97QA6P.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvaGFwcHkta2lkLVc5N1FBNlAuanBnIiwic2xpZGVzaG93IjoiYWxsLWM2ODkwZDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-posing.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c6890d1\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-posing.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLXBvc2luZy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYzY4OTBkMSJ9\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/Causes-2-e1652688232457.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c6890d1\" data-elementor-lightbox-title=\"Causes-2.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDAsInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvQ2F1c2VzLTItZTE2NTI2ODgyMzI0NTcuanBnIiwic2xpZGVzaG93IjoiYWxsLWM2ODkwZDEifQ%3D%3D\">\n														</a>\n							<a href=\"https://demoweblinks.in/aahan/wp-content/uploads/2022/05/portrait-of-volunteer-group-forming-huddles.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c6890d1\" data-elementor-lightbox-title=\"portrait-of-volunteer-group-forming-huddles.jpg\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzksInVybCI6Imh0dHBzOlwvXC9kZW1vd2VibGlua3MuaW5cL2FhaGFuXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIyXC8wNVwvcG9ydHJhaXQtb2Ytdm9sdW50ZWVyLWdyb3VwLWZvcm1pbmctaHVkZGxlcy5qcGciLCJzbGlkZXNob3ciOiJhbGwtYzY4OTBkMSJ9\">\n														</a>\n			<p>© Website Name. All rights reserved</p>','Contact Us','','inherit','closed','closed','','29-autosave-v1','','','2022-05-19 07:08:27','2022-05-19 07:08:27','',29,'https://demoweblinks.in/aahan/?p=610',0,'revision','',0),(611,1,'2022-05-19 07:07:10','2022-05-19 07:07:10','','contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-.jpg','','inherit','open','closed','','contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-jpg','','','2022-05-19 07:07:10','2022-05-19 07:07:10','',0,'https://demoweblinks.in/aahan/wp-content/uploads/2022/05/contact-us-button-on-keyboard-concept-of-internet-online-contact-through-website-.jpg',0,'attachment','image/jpeg',0),(612,1,'2022-05-19 07:07:22','2022-05-19 07:07:22','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Contact</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Contact\n									</li>\n						</ul>\n			<h5>Contact Us</h5>		\n			<h2>Get In Touch</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\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.6.5 - 27-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Jalan%20Sunset%20Road%20Kuta&#038;t=m&#038;z=16&#038;output=embed&#038;iwloc=near\"\n					title=\"Jalan Sunset Road Kuta\"\n					aria-label=\"Jalan Sunset Road Kuta\"\n			></iframe>','Contact','','publish','closed','closed','','contact','','','2022-05-19 07:07:23','2022-05-19 07:07:23','',0,'https://demoweblinks.in/aahan/?elementor_library=contact',0,'elementor_library','',0),(613,1,'2022-05-19 07:07:22','2022-05-19 07:07:22','','Contact','','inherit','closed','closed','','612-revision-v1','','','2022-05-19 07:07:22','2022-05-19 07:07:22','',612,'https://demoweblinks.in/aahan/?p=613',0,'revision','',0),(614,1,'2022-05-19 07:07:23','2022-05-19 07:07:23','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Contact</h2>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/aahan/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Contact\n									</li>\n						</ul>\n			<h5>Contact Us</h5>		\n			<h2>Get In Touch</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud exercitation ullamco		\n			<h3>Denpasar, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Niti Mandala, Renon, Bali, Indonesia – 80225\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\n			<h3>Kuta, Bali</h3>		\n					<ul>\n							<li>\n										Jl. Sunset Road No.815, Kuta, Bali 80361\n									</li>\n								<li>\n										(+62) 8152 254 239\n									</li>\n								<li>\n										contact@domain.com\n									</li>\n						</ul>\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.6.5 - 27-04-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Jalan%20Sunset%20Road%20Kuta&#038;t=m&#038;z=16&#038;output=embed&#038;iwloc=near\"\n					title=\"Jalan Sunset Road Kuta\"\n					aria-label=\"Jalan Sunset Road Kuta\"\n			></iframe>','Contact','','inherit','closed','closed','','612-revision-v1','','','2022-05-19 07:07:23','2022-05-19 07:07:23','',612,'https://demoweblinks.in/aahan/?p=614',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),(7,2,0),(12,3,0),(46,2,0),(52,2,0),(56,2,0),(70,4,0),(71,4,0),(72,4,0),(73,4,0),(74,4,0),(75,4,0),(76,4,0),(77,4,0),(78,2,0),(88,2,0),(96,5,0),(111,2,0),(114,2,0),(123,2,0),(133,2,0),(163,6,0),(185,2,0),(226,2,0),(229,2,0),(232,7,0),(235,7,0),(238,7,0),(241,2,0),(244,7,0),(247,7,0),(250,7,0),(253,7,0),(256,7,0),(272,2,0),(278,2,0),(288,2,0),(297,7,0),(316,6,0),(337,2,0),(341,2,0),(347,6,0),(358,6,0),(368,2,0),(389,7,0),(392,7,0),(399,6,0),(406,2,0),(425,2,0),(429,2,0),(433,2,0),(442,4,0),(443,4,0),(444,4,0),(454,6,0),(469,2,0),(473,2,0),(565,4,0),(566,4,0),(567,4,0),(568,4,0),(569,4,0),(612,6,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=8 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,26),(3,3,'wp_theme','',0,1),(4,4,'nav_menu','',0,16),(5,5,'wp_theme','',0,1),(6,6,'elementor_library_type','',0,7),(7,7,'elementor_library_type','',0,11);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB 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=8 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,'twentytwentytwo','twentytwentytwo',0),(4,'Primary Menu','primary-menu',0),(5,'twentytwenty','twentytwenty',0),(6,'page','page',0),(7,'widget','widget',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=26 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','aahan-admin'),(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:\"6bb2ec9c7c99ac5d5a893b0564d67374462295d938372166a6f69507d745bb17\";a:4:{s:10:\"expiration\";i:1653885899;s:2:\"ip\";s:14:\"103.42.196.227\";s:2:\"ua\";s:126:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36 OPR/85.0.4341.75\";s:5:\"login\";i:1652676299;}s:64:\"dd14fb4c621a34fd8b0144eec5150f80e8dbf924571796e2c877c63102e45637\";a:4:{s:10:\"expiration\";i:1652858325;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:941b:d78f:652a:46cf\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652685525;}s:64:\"ec02e4c01b4d5df0a28aa6e2b7da93979cce7c47c729828fa554321a019c0f79\";a:4:{s:10:\"expiration\";i:1652967798;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:4d8a:d0bc:5689:6bc7\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652794998;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2409:4073:313:5f6c::\";}'),(19,1,'essential_adons_elementor_opt_in','1'),(20,1,'wpdeveloper_notices_seen','a:1:{s:24:\"wpdeveloper_notice_5_1_2\";a:1:{s:25:\"essential_adons_elementor\";a:1:{i:0;s:6:\"opt_in\";}}}'),(21,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\";}'),(22,1,'metaboxhidden_nav-menus','a:5:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:25:\"add-post-type-jkit-header\";i:2;s:25:\"add-post-type-jkit-footer\";i:3;s:27:\"add-post-type-jkit-template\";i:4;s:12:\"add-post_tag\";}'),(23,1,'wp_user-settings','libraryContent=browse&editor=tinymce&hidetb=0&editor_plain_text_paste_warning=1'),(24,1,'wp_user-settings-time','1652878527'),(25,1,'nav_menu_recently_edited','4');
/*!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,'aahan-admin','$P$BwRX3DSSsFGijmutZp1JKqNbSOKSSP1','aahan-admin','brains@amaeka.com','https://demoweblinks.in/aahan','2022-05-16 04:35:32','',0,'aahan-admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!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 2022-05-19  7:21:25
